Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(l2): rpc comparison bench #1360

Draft
wants to merge 21 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
469 changes: 291 additions & 178 deletions Cargo.lock

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ members = [
"crates/vm/levm/bench/revm_comparison",
"crates/l2/",
"crates/l2/prover",
"crates/l2/prover/bench",
"crates/l2/contracts",
"crates/l2/sdk",
"cmd/loc",
Expand Down
2 changes: 1 addition & 1 deletion crates/l2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ thiserror.workspace = true
zkvm_interface = { path = "./prover/zkvm/interface/", default-features = false }

# risc0
risc0-zkvm = { version = "1.1.2" }
risc0-zkvm = { version = "1.2.0" }

[dev-dependencies]
ethrex-sdk = { path = "./sdk" }
Expand Down
2 changes: 1 addition & 1 deletion crates/l2/prover/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ ethrex-l2.workspace = true

# risc0
zkvm_interface = { path = "./zkvm/interface", default-features = false }
risc0-zkvm = { version = "1.1.2" }
risc0-zkvm = { version = "1.2.0" }

[dev-dependencies]
ethrex-vm.workspace = true
Expand Down
Loading