feat: alloy-evm and new revm integration (#14021)

Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
Co-authored-by: rakita <rakita@users.noreply.github.com>
This commit is contained in:
Arsenii Kulikov
2025-02-17 23:59:23 +04:00
committed by GitHub
parent bb6dec7ceb
commit 336c3d1fac
142 changed files with 1841 additions and 1929 deletions

View File

@ -11,3 +11,22 @@ reth-exex = { path = "../../crates/exex/exex" }
reth-node-ethereum = { path = "../../crates/ethereum/node" }
reth-tracing = { path = "../../crates/tracing" }
reth-node-api = { path = "../../crates/node/api" }
[patch.crates-io]
alloy-evm = { git = "https://github.com/alloy-rs/evm", rev = "048248c" }
alloy-op-evm = { git = "https://github.com/alloy-rs/evm", rev = "048248c" }
revm = { git = "https://github.com/bluealloy/revm", rev = "a8b9b1e" }
revm-bytecode = { git = "https://github.com/bluealloy/revm", rev = "a8b9b1e" }
revm-database = { git = "https://github.com/bluealloy/revm", rev = "a8b9b1e" }
revm-state = { git = "https://github.com/bluealloy/revm", rev = "a8b9b1e" }
revm-primitives = { git = "https://github.com/bluealloy/revm", rev = "a8b9b1e" }
revm-interpreter = { git = "https://github.com/bluealloy/revm", rev = "a8b9b1e" }
revm-inspector = { git = "https://github.com/bluealloy/revm", rev = "a8b9b1e" }
revm-context = { git = "https://github.com/bluealloy/revm", rev = "a8b9b1e" }
revm-context-interface = { git = "https://github.com/bluealloy/revm", rev = "a8b9b1e" }
revm-database-interface = { git = "https://github.com/bluealloy/revm", rev = "a8b9b1e" }
revm-specification = { git = "https://github.com/bluealloy/revm", rev = "a8b9b1e" }
revm-optimism = { git = "https://github.com/bluealloy/revm", rev = "a8b9b1e" }
revm-inspectors = { git = "https://github.com/paradigmxyz/revm-inspectors", rev = "74b6aa4" }