Install Move Prover to Validate Code
If you want to use the Move Prover to validate your Move code, install the Move Prover dependencies after installing the CLI binary.
For some sweet examples, see: https://github.com/Zellic/move-prover-examples
Currently, Windows is not supported by the Move Prover.
Prover macOS installation
macOS
These instructions have been tested on macOS Monterey (12.6)
Ensure you have
brew
installed https://brew.sh/.Ensure you have
git
installed https://git-scm.com/book/en/v2/Getting-Started-Installing-Git.Clone the Aptos core repo:
git clone https://github.com/aptos-labs/aptos-core.git
.Change directory into
aptos-core
:cd aptos-core
Run the dev setup script to prepare your environment:
./scripts/dev_setup.sh -yp
Source the profile file:
source ~/.profile
.infoNote that you have to include environment variable definitions in
~/.profile
into your shell. Depending on your setup, the~/.profile
may be already automatically loaded for each login shell, or it may not. If not, you may need to add. ~/.profile
to your~/.bash_profile
or other shell configuration manually.You can now run the Move Prover to prove an example:
aptos move prove --package-dir aptos-move/move-examples/hello_prover/
Prover Linux installation
Linux
Some Linux distributions are not supported. Currently, OpenSUSE and Amazon Linux do not support the automatic installation via the dev_setup.sh
script.
Ensure you have
git
installed https://git-scm.com/book/en/v2/Getting-Started-Installing-Git.Clone the Aptos core repo:
git clone https://github.com/aptos-labs/aptos-core.git
.Change directory into
aptos-core
:cd aptos-core
Run the dev setup script to prepare your environment:
./scripts/dev_setup.sh -yp
Source the profile file:
source ~/.profile
.infoNote that you have to include environment variable definitions in
~/.profile
into your shell. Depending on your setup, the~/.profile
may be already automatically loaded for each login shell, or it may not. If not, you may need to add. ~/.profile
to your~/.bash_profile
or other shell configuration manually.You can now run the Move Prover to prove an example:
aptos move prove --package-dir aptos-move/move-examples/hello_prover/