Skip to content

Commit 3200e0c

Browse files
committed
feat: risc0 aggregation program
1 parent fb7e037 commit 3200e0c

File tree

8 files changed

+2092
-27
lines changed

8 files changed

+2092
-27
lines changed

aggregation_mode/Cargo.lock

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

aggregation_mode/Cargo.toml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ edition = "2021"
55

66

77
[dependencies]
8-
sp1-sdk = "4.1.3"
9-
sp1_aggregation_program = { path = "./aggregation_programs/sp1/" }
108
serde = { version = "1.0.203", features = ["derive"] }
119
serde_json = "1.0.117"
1210
serde_yaml = "0.9"
@@ -21,13 +19,22 @@ reqwest = { version = "0.12" }
2119
ciborium = "=0.2.2"
2220
# Necessary for the VerificationData type
2321
aligned-sdk = { path = "../batcher/aligned-sdk/" }
22+
# zkvms
23+
sp1-sdk = "4.1.3"
24+
sp1_aggregation_program = { path = "./aggregation_programs/sp1/" }
25+
risc0-zkvm = { git = "https://github.com/risc0/risc0", tag = "v2.0.0" }
26+
risc0_aggregation_program = { path = "./aggregation_programs/risc0/" }
2427

2528
[build-dependencies]
2629
sp1-build = { version = "4.1.3" }
30+
risc0-build = { version = "2.0.0" }
31+
32+
[package.metadata.risc0]
33+
# Tell risc0 build to find method in ./aggregation_programs/risc0 package
34+
methods = ["./aggregation_programs/risc0"]
2735

2836
[profile.release]
2937
opt-level = 3
3038

3139
[features]
3240
prove = []
33-

0 commit comments

Comments
 (0)