Install the Move Prover

If you want to use the Move Prover, install the Move Prover dependencies after installing the CLI binary.

  1. Then, in the checked out aptos-core directory, install additional Move tools:

  2. You can now run the Move Prover to prove an example:

    Terminal

    aptos move prove --package-dir aptos-move/move-examples/hello_prover/

Troubleshooting

If you encounter errors like the one below when running the command, double-check your Aptos CLI version or verify that you’re using the correct aptos tool, especially if you have multiple versions installed.

error: unexpected token    β”Œβ”€ ~/.move/https___github_com_aptos-labs_aptos-core_git_main/aptos-move/framework/aptos-framework/sources/randomness.move:515:16    β”‚515 β”‚         for (i in 0..n) {    β”‚             -  ^ Expected ')'    β”‚             β”‚    β”‚             To match this '(' {  "Error": "Move Prover failed: exiting with model building errors"}

Last updated