1//! Standalone crate for Reth configuration traits and builder types.
23#![doc(
4 html_logo_url = "https://raw.githubusercontent.com/paradigmxyz/reth/main/assets/reth-docs.png",
5 html_favicon_url = "https://avatars0.githubusercontent.com/u/97369466?s=256",
6 issue_tracker_base_url = "https://github.com/paradigmxyz/reth/issues/"
7)]
8#![cfg_attr(not(test), warn(unused_crate_dependencies))]
9#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
1011/// Traits, validation methods, and helper types used to abstract over engine types.
12pub use reth_engine_primitives as engine;
13pub use reth_engine_primitives::*;
1415/// Traits and helper types used to abstract over payload types.
16pub use reth_payload_primitives as payload;
17pub use reth_payload_primitives::*;
1819/// Traits and helper types used to abstract over payload builder types.
20pub use reth_payload_builder_primitives as payload_builder;
21pub use reth_payload_builder_primitives::*;
2223/// Traits and helper types used to abstract over EVM methods and types.
24pub use reth_evm::{ConfigureEvm, NextBlockEnvAttributes};
2526pub mod node;
27pub use node::*;
2829// re-export for convenience
30pub use reth_node_types::*;
31pub use reth_provider::FullProvider;