Skip to content

Commit d551bf7

Browse files
docs: clarify risc0 version and installation (#1146)
Co-authored-by: Mauro Toscano <[email protected]>
1 parent 601a50d commit d551bf7

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

docs/3_guides/0_submitting_proofs.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,16 @@ aligned submit \
172172
--payment_service_addr 0x815aeCA64a974297942D2Bbf034ABEe22a38A003
173173
```
174174

175+
**NOTE**: As said above, Aligned currently supports Risc0 proofs from `risc0-zkvm` version `v1.0.1`. For generating proofs using `cargo risc-zero` please ensure you are using `v1.0.1` or your proof will not be verified.
176+
177+
If you can't install `cargo-risczero` `v1.0.1`, you can manually modify your `cargo.toml` on the host project to point to `v1.0.1`:
178+
179+
```toml
180+
risc0-zkvm = { git = "https://github.com/risc0/risc0", tag = "v1.0.1", default-features = false, features = [
181+
"prove",
182+
] }
183+
```
184+
175185
**Example**
176186
177187
```bash

0 commit comments

Comments
 (0)