Skip to content

Commit 25408dc

Browse files
committed
Minor documentation fixes post-0.3.0 release.
1 parent 5bdbf9a commit 25408dc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
</p>
1616
</p>
1717

18-
The Nexus zero-knowledge virtual machine is a modular, extensible, prover-optimized, fully-specified zkVM written in Rust, focused on performance and security. Built with [Stwo](https://github.com/starkware-libs/stwo) by [StarkWare](https://starkware.co/blog/starkware-new-proving-record/). Review the specification [here](./specification/zkvm-spec-3.0-draft.pdf).
18+
The Nexus zero-knowledge virtual machine is a modular, extensible, prover-optimized, fully-specified zkVM written in Rust, focused on performance and security. Built with [Stwo](https://github.com/starkware-libs/stwo) by [StarkWare](https://starkware.co/blog/starkware-new-proving-record/). Review the specification [here](./specification/zkvm-spec-3.0.pdf).
1919

2020
To get started with the Nexus zkVM, check out the [Getting Started](https://docs.nexus.xyz/zkvm/proving/index) page.
2121

sdk/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ $ rustup target add riscv32i-unknown-none-elf
1717
Then, install the Nexus zkVM:
1818

1919
```shell
20-
$ cargo install --git https://github.com/nexus-xyz/nexus-zkvm cargo-nexus --tag 'v0.3.0'
20+
$ rustup run nightly-2025-01-02 cargo install --git https://github.com/nexus-xyz/nexus-zkvm cargo-nexus --tag 'v0.3.0'
2121
```
2222

2323
And verify the installation:
2424

2525
```shell
26-
$ cargo nexus --help
26+
$ rustup run nightly-2025-01-02 cargo nexus --help
2727
```
2828

2929
This should print the available CLI commands. At present, the `cargo nexus` CLI is minimal, providing just a `cargo nexus host` command to setup an SDK based project.
@@ -33,7 +33,7 @@ This should print the available CLI commands. At present, the `cargo nexus` CLI
3333
To use the zkVM programmatically, we need two programs: a _guest_ program that runs on the zkVM, and a _host_ program that operates the zkVM itself. Run:
3434

3535
```shell
36-
$ cargo nexus host nexus-host
36+
$ rustup run nightly-2025-01-02 cargo nexus host nexus-host
3737
```
3838

3939
This will create a new Rust project directory with the following structure:

0 commit comments

Comments
 (0)