Skip to content

Commit

Permalink
feat: Use revm Optimism execution (#44)
Browse files Browse the repository at this point in the history
* do not default source_hash and mint

* use revm optimism execution

* update testdata

* add optimism tests

* upgrade revm to latest commit

* upgrade revm with latest op changes

* Upgrade `revm` in Optimism execution (#76)

* Update dependencies versions

* fix revm commit

* use correct tags

* use EVM in comments

* update copyright

* register optimism revm handle

* update revm

* update k256

---------

Co-authored-by: john xu <[email protected]>

---------

Co-authored-by: john xu <[email protected]>
  • Loading branch information
Wollac and dyxushuai authored Jan 22, 2024
1 parent fbe4255 commit 7280614
Show file tree
Hide file tree
Showing 21 changed files with 1,876 additions and 1,703 deletions.
849 changes: 452 additions & 397 deletions Cargo.lock

Large diffs are not rendered by default.

15 changes: 7 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
[workspace]
resolver = "2"
members = [
"guests",
"host",
"lib",
"primitives",
"testing/ef-tests"
]
members = ["guests", "host", "lib", "primitives", "testing/ef-tests"]

# Always optimize; building and running the guest takes much longer without optimization.
[profile.dev]
Expand All @@ -27,4 +21,9 @@ bonsai-sdk = "0.5"
hashbrown = { version = "0.14", features = ["inline-more"] }
risc0-build = "0.19"
risc0-zkvm = { version = "0.19", default-features = false }
revm = { version = "3.5", default-features = false, features = ["std", "serde", "optional_no_base_fee", "optional_balance_check"] }
revm-primitives = { git = "https://github.com/bluealloy/revm.git", rev = "6cd0bfc96da64513affe01c1964dd80beeb8c620", default_features = false }
revm = { git = "https://github.com/bluealloy/revm.git", rev = "6cd0bfc96da64513affe01c1964dd80beeb8c620", default-features = false, features = [
"std",
"serde",
"optimism",
] }
Loading

0 comments on commit 7280614

Please sign in to comment.