Skip to content

Commit 3c201f7

Browse files
authored
chore(vapp): update sp1 to v5.1.0 (#184)
1 parent fcea839 commit 3c201f7

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ spn-network-types = { path = "crates/types/network" }
3838
spn-vapp-core = { path = "crates/vapp" }
3939

4040
# sp1
41-
sp1-sdk = { git = "https://github.com/succinctlabs/sp1.git", branch = "dev" }
42-
sp1-prover = { git = "https://github.com/succinctlabs/sp1.git", branch = "dev" }
43-
sp1-verifier = { git = "https://github.com/succinctlabs/sp1.git", branch = "dev" }
44-
sp1-zkvm = { git = "https://github.com/succinctlabs/sp1.git", branch = "dev" }
45-
sp1-build = { git = "https://github.com/succinctlabs/sp1.git", branch = "dev" }
41+
sp1-sdk = "5.1.0"
42+
sp1-prover = "5.1.0"
43+
sp1-verifier = "5.1.0"
44+
sp1-zkvm = "5.1.0"
45+
sp1-build = "5.1.0"
4646

4747
# aws
4848
aws-config = "1.5.3"

programs/vapp/aggregation/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
spn-vapp-core = { workspace = true }
88
alloy-sol-types = { workspace = true }
99
sha2 = { workspace = true }
10-
sp1-zkvm = { version = "5.0.5", features = ["verify"] }
10+
sp1-zkvm = { version = "5.1.0", features = ["verify"] }
1111

1212
[build-dependencies]
1313
sp1-sdk = { workspace = true, default-features = false }

programs/vapp/stf/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ edition = "2021"
77
spn-vapp-core = { workspace = true }
88
alloy-primitives = { workspace = true, features = ["k256", "tiny-keccak"] }
99
alloy-sol-types = { workspace = true }
10-
sp1-zkvm = { version = "5.0.5", features = ["verify"] }
10+
sp1-zkvm = { version = "5.1.0", features = ["verify"] }

x.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ done
2828
# Build the STF program.
2929
echo "Building STF program..."
3030
cd programs/vapp/stf
31-
cargo prove build --elf-name spn-vapp-stf $USE_DOCKER --tag v5.0.5 --output-directory ../../../elf
31+
cargo prove build --elf-name spn-vapp-stf $USE_DOCKER --tag v5.1.0 --output-directory ../../../elf
3232
cd ../../..
3333
echo "Done!"
3434
echo ""
3535

3636
# Build the aggregation program.
3737
echo "Building aggregation program..."
3838
cd programs/vapp/aggregation
39-
cargo prove build --elf-name spn-vapp-aggregation $USE_DOCKER --tag v5.0.5 --output-directory ../../../elf
39+
cargo prove build --elf-name spn-vapp-aggregation $USE_DOCKER --tag v5.1.0 --output-directory ../../../elf
4040
cd ../../..
4141
echo "Done!"
4242
echo ""

0 commit comments

Comments
 (0)