Icon HelpCircleForumIcon Link

⌘K

Icon HelpCircleForumIcon Link
Running Scripts

Icon LinkRunning a script

Suppose your Sway script main function is written using the arguments passed to the main function like so:

script;
 
use std::logging::log;
 
fn main(foo: u8) -> u8 {
    log(__to_str_array("u8 foo"));
    log(foo);
    foo
}

You can still hand code out a solution wrapper using callScript utility to call your script with data. However, if you prefer to use the ABI generated from your script, you can use the ScriptFactory helper:

const foo = 33;
const scriptInstance = new Script<BigNumberish[], BigNumberish>(
  ScriptMainArgs.bytecode,
  ScriptMainArgs.abi,
  wallet
);
 
const { waitForResult } = await scriptInstance.functions.main(foo).call();
 
const { value, logs } = await waitForResult();