-
Hello, I am wondering, is there a documentation on how to interpret a simple Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
The
Where However, in your special case this tool won't help you since you apparently want to run ink! smart contracts using Therefore your best bet is to use the ink! playground to toy around a bit or alternative use a proper Substrate smart contracts UI to make use of a deployed chain. |
Beta Was this translation helpful? Give feedback.
The
wasmi
interpreter repository provides awasmi_cli
application out of the box that allows to run raw Wasm files and soon WASI compatible Wasm files with the following command when your work directory is in thewasmi
repository:Where
WASM_FILE
is the Wasm file path,FUNCTION_NAME
is the name of the exported function of the Wasm file you want to call and[<FUNC_ARGS>]*
is the optional number of arguments for the called function.However, in your special case this tool won't help you since you apparently want to run ink! smart contracts using
wasmi
. However, ink! smart contracts require a special environment that i…