Skip to content

Commit 2ebdc30

Browse files
committed
refactor: verifier coordination
1 parent 9eaf484 commit 2ebdc30

20 files changed

+191
-928
lines changed

Cargo.lock

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

zkvm_execution_layer/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ types = { path = "../consensus/types" }
1515
execution_layer = { path = "../beacon_node/execution_layer" }
1616
pico-prism-vm = { git = "https://github.com/ethproofs/pico.git", package = "pico-vm", branch = "ethproofs-pico-prism" }
1717
proofman-verifier = { git = "https://github.com/0xPolygonHermez/pil2-proofman.git", tag = "v0.12.0" }
18-
zkm-verifier = { git = "https://github.com/ProjectZKM/Ziren", tag = "v1.2.1" }
1918
sp1-verifier = { git = "https://github.com/succinctlabs/hypercube-verifier.git", branch = "ethproofs_demo" }
2019
verify-stark = { git = "https://github.com/openvm-org/openvm.git", branch = "feat/v1-verify-stark", package = "verify-stark" }
2120
bitcode = { version = "0.5", features = ["serde"] }
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

zkvm_execution_layer/src/verification_keys/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,8 +222,8 @@ mod tests {
222222
let prover_id1 = Uuid::new_v4();
223223
let prover_id2 = Uuid::new_v4();
224224

225-
let vk1_path = vk_dir.join(format!("brevis_{}.bin", prover_id1));
226-
let vk2_path = vk_dir.join(format!("zkm_{}.bin", prover_id2));
225+
let vk1_path = vk_dir.join(format!("pico_{}.bin", prover_id1));
226+
let vk2_path = vk_dir.join(format!("openvm_{}.bin", prover_id2));
227227

228228
fs::write(&vk1_path, vec![1, 2, 3, 4]).unwrap();
229229
fs::write(&vk2_path, vec![5, 6, 7, 8, 9]).unwrap();

0 commit comments

Comments
 (0)