feat: new engine API handler (#8559)

Co-authored-by: Roman Krasiuk <rokrassyuk@gmail.com>
Co-authored-by: Dan Cline <6798349+Rjected@users.noreply.github.com>
Co-authored-by: Federico Gimenez <fgimenez@users.noreply.github.com>
This commit is contained in:
Matthias Seitz
2024-07-01 14:03:44 +02:00
committed by GitHub
parent 068bf57c06
commit 01979c4bde
17 changed files with 2208 additions and 11 deletions

View File

@ -26,6 +26,7 @@ members = [
"crates/ethereum-forks/",
"crates/e2e-test-utils/",
"crates/engine/primitives/",
"crates/engine/tree/",
"crates/engine/util/",
"crates/errors/",
"crates/ethereum-forks/",
@ -287,6 +288,7 @@ reth-downloaders = { path = "crates/net/downloaders" }
reth-e2e-test-utils = { path = "crates/e2e-test-utils" }
reth-ecies = { path = "crates/net/ecies" }
reth-engine-primitives = { path = "crates/engine/primitives" }
reth-engine-tree = { path = "crates/engine/tree" }
reth-engine-util = { path = "crates/engine/util" }
reth-errors = { path = "crates/errors" }
reth-eth-wire = { path = "crates/net/eth-wire" }