mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-02-14 00:45:01 -05:00
Co-authored-by: Roberto Bayardo <bayardo@alum.mit.edu> Co-authored-by: refcell.eth <abigger87@gmail.com> Co-authored-by: Roman Krasiuk <rokrassyuk@gmail.com> Co-authored-by: refcell <refcell@oplabs.co> Co-authored-by: nicolas <48695862+merklefruit@users.noreply.github.com>
39 lines
1.1 KiB
Rust
39 lines
1.1 KiB
Rust
//! Revm utils and implementations specific to reth.
|
|
|
|
#![doc(
|
|
html_logo_url = "https://raw.githubusercontent.com/paradigmxyz/reth/main/assets/reth-docs.png",
|
|
html_favicon_url = "https://avatars0.githubusercontent.com/u/97369466?s=256",
|
|
issue_tracker_base_url = "https://github.com/paradigmxyz/reth/issues/"
|
|
)]
|
|
#![warn(missing_debug_implementations, missing_docs, unreachable_pub, rustdoc::all)]
|
|
#![deny(unused_must_use, rust_2018_idioms)]
|
|
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
|
|
|
|
/// Contains glue code for integrating reth database into revm's [Database].
|
|
pub mod database;
|
|
|
|
/// revm implementation of reth block and transaction executors.
|
|
mod factory;
|
|
|
|
/// new revm account state executor
|
|
pub mod processor;
|
|
|
|
/// State changes that are not related to transactions.
|
|
pub mod state_change;
|
|
|
|
/// revm executor factory.
|
|
pub use factory::Factory;
|
|
|
|
/// reexport for convenience
|
|
pub use reth_revm_inspectors::*;
|
|
|
|
/// Re-export everything
|
|
pub use revm::{self, *};
|
|
|
|
/// Ethereum DAO hardfork state change data.
|
|
pub mod eth_dao_fork;
|
|
|
|
/// Optimism-specific implementation and utilities for the executor
|
|
#[cfg(feature = "optimism")]
|
|
pub mod optimism;
|