reth_node_ethereum/lib.rs
1//! Standalone crate for ethereum-specific Reth configuration and builder types.
2//!
3//! # features
4//! - `js-tracer`: Enable the `JavaScript` tracer for the `debug_trace` endpoints
5
6#![doc(
7 html_logo_url = "https://raw.githubusercontent.com/paradigmxyz/reth/main/assets/reth-docs.png",
8 html_favicon_url = "https://avatars0.githubusercontent.com/u/97369466?s=256",
9 issue_tracker_base_url = "https://github.com/paradigmxyz/reth/issues/"
10)]
11#![cfg_attr(not(test), warn(unused_crate_dependencies))]
12#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
13
14use reth_revm as _;
15use revm as _;
16
17pub use reth_ethereum_engine_primitives::EthEngineTypes;
18
19pub mod evm;
20pub use evm::EthEvmConfig;
21
22#[allow(deprecated)]
23pub use evm::EthExecutorProvider;
24
25pub use reth_ethereum_consensus as consensus;
26pub mod node;
27pub use node::*;
28
29pub mod payload;
30
31pub mod engine;
32pub use engine::EthereumEngineValidator;