Skip to content

Commit

Permalink
refactor(ethereum, primitives, evm): use Alloy EIP-4788 constants (pa…
Browse files Browse the repository at this point in the history
  • Loading branch information
shekhirin authored and mw2000 committed Jun 5, 2024
1 parent dd9b068 commit 92f1e51
Show file tree
Hide file tree
Showing 8 changed files with 86 additions and 94 deletions.
110 changes: 56 additions & 54 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 14 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ reth-testing-utils = { path = "testing/testing-utils" }
# revm
revm = { version = "8.0.0", features = ["std", "secp256k1"], default-features = false }
revm-primitives = { version = "3.1.0", features = ["std"], default-features = false }
revm-inspectors = { git = "https://github.com/paradigmxyz/evm-inspectors", rev = "c1b5dd0" }
revm-inspectors = { git = "https://github.com/paradigmxyz/evm-inspectors", rev = "a5df8a0" }

# eth
alloy-chains = "0.1.15"
Expand All @@ -291,21 +291,21 @@ alloy-dyn-abi = "0.7.2"
alloy-sol-types = "0.7.2"
alloy-rlp = "0.3.4"
alloy-trie = "0.3.1"
alloy-rpc-types = { git = "https://github.com/alloy-rs/alloy", rev = "899fc51" }
alloy-rpc-types-anvil = { git = "https://github.com/alloy-rs/alloy", rev = "899fc51" }
alloy-rpc-types-trace = { git = "https://github.com/alloy-rs/alloy", rev = "899fc51" }
alloy-rpc-types-engine = { git = "https://github.com/alloy-rs/alloy", rev = "899fc51" }
alloy-rpc-types-beacon = { git = "https://github.com/alloy-rs/alloy", rev = "899fc51" }
alloy-genesis = { git = "https://github.com/alloy-rs/alloy", rev = "899fc51" }
alloy-node-bindings = { git = "https://github.com/alloy-rs/alloy", rev = "899fc51" }
alloy-provider = { git = "https://github.com/alloy-rs/alloy", rev = "899fc51", default-features = false, features = [
alloy-rpc-types = { git = "https://github.com/alloy-rs/alloy", rev = "f1d7085" }
alloy-rpc-types-anvil = { git = "https://github.com/alloy-rs/alloy", rev = "f1d7085" }
alloy-rpc-types-trace = { git = "https://github.com/alloy-rs/alloy", rev = "f1d7085" }
alloy-rpc-types-engine = { git = "https://github.com/alloy-rs/alloy", rev = "f1d7085" }
alloy-rpc-types-beacon = { git = "https://github.com/alloy-rs/alloy", rev = "f1d7085" }
alloy-genesis = { git = "https://github.com/alloy-rs/alloy", rev = "f1d7085" }
alloy-node-bindings = { git = "https://github.com/alloy-rs/alloy", rev = "f1d7085" }
alloy-provider = { git = "https://github.com/alloy-rs/alloy", rev = "f1d7085", default-features = false, features = [
"reqwest",
] }
alloy-eips = { git = "https://github.com/alloy-rs/alloy", default-features = false, rev = "899fc51" }
alloy-signer = { git = "https://github.com/alloy-rs/alloy", rev = "899fc51" }
alloy-signer-wallet = { git = "https://github.com/alloy-rs/alloy", rev = "899fc51" }
alloy-network = { git = "https://github.com/alloy-rs/alloy", rev = "899fc51" }
alloy-consensus = { git = "https://github.com/alloy-rs/alloy", rev = "899fc51" }
alloy-eips = { git = "https://github.com/alloy-rs/alloy", default-features = false, rev = "f1d7085" }
alloy-signer = { git = "https://github.com/alloy-rs/alloy", rev = "f1d7085" }
alloy-signer-wallet = { git = "https://github.com/alloy-rs/alloy", rev = "f1d7085" }
alloy-network = { git = "https://github.com/alloy-rs/alloy", rev = "f1d7085" }
alloy-consensus = { git = "https://github.com/alloy-rs/alloy", rev = "f1d7085" }

# misc
auto_impl = "1"
Expand Down
4 changes: 3 additions & 1 deletion crates/ethereum/evm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,6 @@ revm-primitives.workspace = true
tracing.workspace = true

[dev-dependencies]
reth-revm = { workspace = true, features = ["test-utils"] }
reth-revm = { workspace = true, features = ["test-utils"] }
alloy-eips.workspace = true

Loading

0 comments on commit 92f1e51

Please sign in to comment.