Commands

The Beo private key, view key, and address will be printed to console. See concepts/accounts for more information.

To create a new package, run:

snarkvm new {$NAME}

Valid package names are snake_case: lowercase letters and numbers separated by underscore. This command will create a new directory with the given package name. The new package will have a directory structure as follows:

package-name/
├── program.json # Your program manifest
├── README.md # Your program description
└── main.leo # Your program file

snarkvm buildarrow-up-right

info

This command is deprecated as of snarkVM v0.14.5. It will be removed in a future release.

To compile your program and verify that it builds properly, run:

snarkvm build

To compile your program in offline mode run:

snarkvm build --offline

To run your Beo program function run:

To run your Beo program function in offline mode run:

To run your Beo program function to a specified endpoint run:

snarkvm executearrow-up-right

To execute your Beo program function run:

To execute your Beoprogram function in offline mode run:

To execute your Beo program function to a specified endpoint run:

snarkvm cleanarrow-up-right

To clean the Beo package build directory run:

snarkvm updatearrow-up-right

To update snarkVM to the latest version run:

To list the available versions of Beo run:

To update snarkVM and suppress outputs to terminal run:

Last updated