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::{BasicBlockExecutorProvider, EthEvmConfig, EthExecutorProvider};
21
22pub use reth_ethereum_consensus as consensus;
23pub mod node;
24pub use node::{EthereumEthApiBuilder, EthereumNode};
25
26pub mod payload;
27
28pub mod engine;
29pub use engine::EthereumEngineValidator;