Skip to content

Commit fb7e037

Browse files
Mechanix97JuArce
andauthored
Change SP1-sdk version from 4.1.3 to 4.1.7 (#1851)
Co-authored-by: Julian Arce <[email protected]>
1 parent 9e70085 commit fb7e037

File tree

13 files changed

+7971
-153
lines changed

13 files changed

+7971
-153
lines changed

batcher/Cargo.lock

Lines changed: 67 additions & 70 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

batcher/aligned-batcher/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ anyhow = "1.0.83"
2222
ethers = { version = "2.0", features = ["ws", "rustls"] }
2323
lambdaworks-crypto = { git = "https://github.com/lambdaclass/lambdaworks.git", rev = "efd46f0b0aea3aa95d94bba7de86cb96611b40d3", features = ["serde"] }
2424
serde_yaml = "0.9.34"
25-
sp1-sdk = { git = "https://github.com/succinctlabs/sp1.git", rev = "v4.1.3" }
25+
sp1-sdk = { git = "https://github.com/succinctlabs/sp1.git", rev = "v4.1.7" }
2626
risc0-zkvm = { git = "https://github.com/risc0/risc0", tag = "v2.0.0" }
2727
bincode = "1.3.3"
2828
aligned-sdk = { path = "../aligned-sdk" }

docs/2_architecture/0_supported_verifiers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The following is the list of the verifiers currently supported by Aligned:
66

77
- :white_check_mark: gnark - Groth16 (with BN254) [(v0.10.0)](https://github.com/Consensys/gnark/releases/tag/v0.10.0)
88
- :white_check_mark: gnark - Plonk (with BN254 and BLS12-381) [(v0.10.0)](https://github.com/Consensys/gnark/releases/tag/v0.10.0)
9-
- :white_check_mark: SP1 [(v4.1.3)](https://github.com/succinctlabs/sp1/releases/tag/v4.1.3)
9+
- :white_check_mark: SP1 [(v4.1.7)](https://github.com/succinctlabs/sp1/releases/tag/v4.1.7)
1010
- :white_check_mark: Risc0 [(v2.0.0)](https://github.com/risc0/risc0/releases/tag/v2.0.0)
1111
- 🏗️ Circom
1212
- 🏗️ Lambdaworks

docs/3_guides/0_submitting_proofs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The following is the list of the verifiers currently supported by Aligned:
1212

1313
- :white_check_mark: gnark - Groth16 (with BN254)
1414
- :white_check_mark: gnark - Plonk (with BN254 and BLS12-381)
15-
- :white_check_mark: SP1 [(v4.1.3)](https://github.com/succinctlabs/sp1/releases/tag/v4.1.3)
15+
- :white_check_mark: SP1 [(v4.1.7)](https://github.com/succinctlabs/sp1/releases/tag/v4.1.7)
1616
- :white_check_mark: Risc0 [(v2.0.0)](https://github.com/risc0/risc0/releases/tag/v2.0.0)
1717

1818
Learn more about future verifiers [here](../2_architecture/0_supported_verifiers.md).
@@ -123,7 +123,7 @@ Proof submission is done via the `submit` command of the Aligned CLI. The argume
123123

124124
### SP1 proof
125125

126-
The current SP1 version used in Aligned is `v4.1.3`.
126+
The current SP1 version used in Aligned is `v4.1.7`.
127127

128128
The SP1 proof needs the proof file and the vm program file.
129129

docs/3_guides/2_build_your_first_aligned_application.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Next, we will see how to execute ZKQuiz to get your own ZKQuiz NFT!
3131
2. [Foundry](https://getfoundry.sh)
3232

3333
{% hint style="info" %}
34-
ELF commitment was generated with Rust v1.80.1 and SP1 v4.1.3.
34+
ELF commitment was generated with Rust v1.80.1 and SP1 v4.1.7.
3535
{% endhint %}
3636

3737
### Usage

examples/validating-public-input/sp1/fibonacci/program/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ name = "fibonacci-program"
44
edition = "2021"
55

66
[dependencies]
7-
sp1-zkvm = { git = "https://github.com/succinctlabs/sp1.git", rev = "v4.1.3" }
7+
sp1-zkvm = { git = "https://github.com/succinctlabs/sp1.git", rev = "v4.1.7" }

examples/validating-public-input/sp1/fibonacci/script/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name = "fibonacci"
99
path = "src/main.rs"
1010

1111
[dependencies]
12-
sp1-sdk = { git = "https://github.com/succinctlabs/sp1.git", rev = "v4.1.3" }
12+
sp1-sdk = { git = "https://github.com/succinctlabs/sp1.git", rev = "v4.1.7" }
1313
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
1414
serde = { version = "1.0", default-features = false, features = ["derive"] }
1515
clap = { version = "4.0", features = ["derive", "env"] }
@@ -19,5 +19,5 @@ alloy-sol-types = { workspace = true }
1919
bincode = "1.3.3"
2020

2121
[build-dependencies]
22-
sp1-helper = { git = "https://github.com/succinctlabs/sp1.git", rev = "v4.1.3" }
22+
sp1-helper = { git = "https://github.com/succinctlabs/sp1.git", rev = "v4.1.7" }
2323
sp1-build = "3.0.0"

examples/zkquiz/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ answer_quiz:
1414
@cd quiz/script && cargo run -r -- \
1515
--keystore-path $(KEYSTORE_PATH) \
1616
--rpc-url $(RPC_URL) \
17+
--network holesky \
1718
--verifier-contract-address $(CONTRACT_ADDRESS)
1819

1920
answer_quiz_stage:

examples/zkquiz/quiz/program/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name = "quiz-program"
55
edition = "2021"
66

77
[dependencies]
8-
sp1-zkvm = { git = "https://github.com/succinctlabs/sp1.git", rev = "v4.1.3" }
8+
sp1-zkvm = { git = "https://github.com/succinctlabs/sp1.git", rev = "v4.1.7" }
99
tiny-keccak = { git = "https://github.com/sp1-patches/tiny-keccak", branch = "patch-v2.0.2", features = [
1010
"sha3",
1111
] }

0 commit comments

Comments
 (0)