Compile and Publish
Create and deploy your first move module.
It is good practice to review the possible arguments of each command before you execute them. You can do this by passing the --help
argument. Example: supra move tool publish --help
1
Compile your package
Compiling your package will fetch any dependencies defined in your Move.toml
file before building your package. A new directory named build
will be created storing the bytecode and sources for your package.
supra move tool compile --package-dir /supra/move_workspace/exampleContract
2
Last updated