paradigmxyz / reth

Modular, contributor-friendly and blazing-fast implementation of the Ethereum protocol, in Rust
https://reth.rs/
Apache License 2.0
4.01k stars 1.23k forks source link

Improve reth-revm crate and layout #7391

Closed mattsse closed 5 months ago

mattsse commented 8 months ago

Describe the feature

Atm a few things are mangled with optimism features. The goal is to extract as much as possible to standalone op specific crates. This has been done with payload builder and txpool crates

op features in the evm/blockexecutor code is the biggest pain point atm. we already have an evm abstraction which should be the starting point for this. we need to follow a similar pattern here:

  1. extract the general abstraction (traits)
  2. move ethereum impl to ethereum crate, move optimism impl to op crate

This is similar to #7375 but should be done before #7375

we need:

Additional context

No response

Rjected commented 5 months ago

Is there anything left on this?