Skip to content

Commit

Permalink
Docs: Updating missing arguments in SP1 Quickstarter (#1681)
Browse files Browse the repository at this point in the history
  • Loading branch information
Uttam-Singhh authored Oct 25, 2024
1 parent 18f7a5c commit e450d43
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions book/getting-started/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ In this section, we will show you how to create a simple Fibonacci program using

### Option 1: Cargo Prove New CLI (Recommended)

You can use the `cargo prove` CLI to create a new project using the `cargo prove new <name>` command. This command will create a new folder in your current directory.
You can use the `cargo prove` CLI to create a new project using the `cargo prove new <--bare|--evm> <name>` command. The `--bare` option sets up a basic SP1 project for standalone zkVM programs, while `--evm` adds additional components including Solidity contracts for on-chain proof verification.

This command will create a new folder in your current directory which includes solidity smart contracts for onchain integration.

```bash
cargo prove new fibonacci
cargo prove new --evm fibonacci
cd fibonacci
```

Expand Down

0 comments on commit e450d43

Please sign in to comment.