move
tool to build move applications, the same like aptos move
command
shell
aptos@deepmove>move
Tool for Move smart contract related operations
Usage: aptos move <COMMAND>
Commands:
build-publish-payload
Build a publication transaction payload and store it in a JSON output file
clean
Cleans derived artifacts of a package
clear-staging-area
Cleans up the `StagingArea` resource under an account, which is used for chunked publish
operations
compile
Compiles a package and returns the associated ModuleIds
compile-script
Compiles a Move script into bytecode
coverage
Computes coverage for a package
create-object-and-publish-package
Publishes the modules in a Move package to the Aptos blockchain, under an object (legacy
version of `deploy-object`)
upgrade-object-package
Upgrades the modules in a Move package deployed under an object (legacy version of
`upgrade-object`)
deploy-object
Publishes the modules in a Move package to the Aptos blockchain, under an object
upgrade-object
Upgrades the modules in a Move package deployed under an object
create-resource-account-and-publish-package
Publishes the modules in a Move package to the Aptos blockchain under a resource account
disassemble
Disassemble the Move bytecode pointed to in the textual representation of Move bytecode
decompile
Decompile the Move bytecode pointed to into Move source code
document
Documents a Move package
download
Downloads a package and stores it in a directory named after the package
init
Creates a new Move package at the given location
lint
Run a Lint tool to show additional warnings about the current package, in addition to
ordinary warnings and/or errors generated by the Move 2 compiler
list
Lists information about packages and modules on-chain for an account
prove
Proves a Move package
publish
Publishes the modules in a Move package to the Aptos blockchain
run
Run a Move function
run-script
Run a Move script
simulate
BETA: Simulate a Move function or script
test
Runs Move unit tests for a package
verify-package
Downloads a package and verifies the bytecode
view
Run a view function
replay
Replay a comitted transaction using a local VM
fmt
Format the Move source code
help
Print this message or the help of the given subcommand(s)
Options:
-h, --help Print help (see more with '--help')
-V, --version Print version
you can run move build
to build move packages
usage:
move build