Skip to content

Commit a0ead7a

Browse files
chore: bump up sp1 version (#670)
1 parent c43dbbe commit a0ead7a

16 files changed

Lines changed: 1522 additions & 1053 deletions

File tree

batcher/Cargo.lock

Lines changed: 209 additions & 96 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 = { tag = "v2.0.15-fix-reconnections", features = ["ws", "rustls"], git = "https://github.com/yetanotherco/ethers-rs.git" }
2323
lambdaworks-crypto = { version = "0.7.0", features = ["serde"] }
2424
serde_yaml = "0.9.34"
25-
sp1-sdk = { git = "https://github.com/succinctlabs/sp1.git", rev = "v1.0.8-testnet" }
25+
sp1-sdk = { git = "https://github.com/succinctlabs/sp1.git", rev = "v1.0.1" }
2626
risc0-zkvm = { git = "https://github.com/risc0/risc0", tag="v1.0.1" }
2727
halo2curves = { version = "0.6.0", default-features = false }
2828
halo2_backend = { git = "https://github.com/yetanotherco/yet-another-halo2-fork.git", rev = "a3a56819d9183ac0b11c8d0543c7673c4a4c71a6"}

batcher/aligned-batcher/src/sp1/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pub fn verify_sp1_proof(proof: &[u8], elf: &[u8]) -> bool {
1010
debug!("Verifying SP1 proof");
1111
let (_pk, vk) = SP1_PROVER_CLIENT.setup(elf);
1212
if let Ok(proof) = bincode::deserialize(proof) {
13-
let res = SP1_PROVER_CLIENT.verify_compressed(&proof, &vk).is_ok();
13+
let res = SP1_PROVER_CLIENT.verify(&proof, &vk).is_ok();
1414
debug!("SP1 proof is valid: {}", res);
1515
if res {
1616
return true;

docs/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)
88
- :white_check_mark: gnark - Plonk (with BN254 and BLS12-381)
9-
- :white_check_mark: SP1 [(v1.0.8-testnet)](https://github.com/succinctlabs/sp1/releases/tag/v1.0.8-testnet)
9+
- :white_check_mark: SP1 [(v1.0.1)](https://github.com/succinctlabs/sp1/releases/tag/v1.0.1)
1010
- :white_check_mark: Risc0 [(v1.0.1)](https://github.com/risc0/risc0/releases/tag/v1.0.1)
1111

1212
The following proof systems are going to be added soon:

docs/guides/0_submitting_proofs.md

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

1111
- :white_check_mark: gnark - Groth16 (with BN254)
1212
- :white_check_mark: gnark - Plonk (with BN254 and BLS12-381)
13-
- :white_check_mark: SP1 [(v1.0.8-testnet)](https://github.com/succinctlabs/sp1/releases/tag/v1.0.8-testnet)
13+
- :white_check_mark: SP1 [(v1.0.1)](https://github.com/succinctlabs/sp1/releases/tag/v1.0.1)
1414
- :white_check_mark: Risc0 [(v1.0.1)](https://github.com/risc0/risc0/releases/tag/v1.0.1)
1515

1616
The following proof systems are going to be added soon:

0 commit comments

Comments
 (0)