Skip to content

Commit ce996a9

Browse files
committed
bump to 4.1.7
1 parent 2f094d8 commit ce996a9

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/main_prover.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: |
3232
. "$HOME/.cargo/env"
3333
curl -L https://sp1.succinct.xyz | bash
34-
~/.sp1/bin/sp1up --version 4.1.0
34+
~/.sp1/bin/sp1up --version 4.1.7
3535
3636
- name: Set up Docker Buildx
3737
uses: docker/setup-buildx-action@v3

.github/workflows/pr-main_l2_prover.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: RISC-V SP1 toolchain install
3131
run: |
3232
curl -L https://sp1.succinct.xyz | bash
33-
~/.sp1/bin/sp1up --version 4.1.0
33+
~/.sp1/bin/sp1up --version 4.1.7
3434
- name: Check sp1
3535
run: |
3636
cargo check -p ethrex-prover -F sp1
@@ -75,7 +75,7 @@ jobs:
7575
- name: RISC-V SP1 toolchain install
7676
run: |
7777
curl -L https://sp1.succinct.xyz | bash
78-
~/.sp1/bin/sp1up --version 4.1.0
78+
~/.sp1/bin/sp1up --version 4.1.7
7979
- name: Build prover and SP1's zkVM
8080
run: |
8181
cd crates/l2/prover

crates/l2/docs/prover.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ sequenceDiagram
6464
2. `rzup install cargo-risczero 1.2.0`
6565
- [SP1](https://docs.succinct.xyz/docs/sp1/introduction)
6666
1. `curl -L https://sp1up.succinct.xyz | bash`
67-
2. `sp1up --version 4.1.0`
67+
2. `sp1up --version 4.1.7`
6868
- [Pico](https://docs.brevis.network/)
6969
1. `cargo +nightly install --git https://github.com/brevis-network/pico pico-cli`
7070
2. `rustup install nightly-2024-11-27`

crates/l2/prover/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ zkvm_interface = { path = "./zkvm/interface", default-features = false }
3030
risc0-zkvm = { version = "1.2.2", optional = true }
3131
risc0-ethereum-contracts = { version = "1.3.1", optional = true }
3232

33-
sp1-sdk = { version = "4.1.1", optional = true }
34-
sp1-recursion-gnark-ffi = { version = "4.1.1", optional = true }
33+
sp1-sdk = { version = "4.1.7", optional = true }
34+
sp1-recursion-gnark-ffi = { version = "4.1.7", optional = true }
3535
pico-sdk = { git = "https://github.com/brevis-network/pico", optional = true, rev = "286feb9878d9e09347852e5bf127b8ff81a2b45c" }
3636

3737
[dev-dependencies]

crates/l2/prover/bench/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Usage
44

5-
1. For now we only support SP1. Install their [toolchain](https://docs.succinct.xyz/docs/sp1/introduction) first.
5+
1. For now we only support SP1. Install their [toolchain](https://docs.succinct.xyz/docs/sp1/introduction) first (version 4.1.7).
66
2. Run:
77
1. `make sp1 RPC_URL=<json rpc url> BLOCK_NUMBER=<number, optional>` for execution without proving
88
2. `make prove-sp1 RPC_URL=<json rpc url> BLOCK_NUMBER=<number, optional>` for generating a proof.

crates/l2/prover/zkvm/interface/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ ethrex-trie = { path = "../../../../common/trie", default-features = false }
2020

2121
[build-dependencies]
2222
risc0-build = { version = "1.2.2", optional = true }
23-
sp1-build = { version = "4.1.1", optional = true }
23+
sp1-build = { version = "4.1.7", optional = true }
2424
pico-cli = { git = "https://github.com/brevis-network/pico", optional = true }
2525

2626
[package.metadata.risc0]

0 commit comments

Comments
 (0)