reth_node_api/
lib.rs

1//! Standalone crate for Reth configuration traits and builder types.
2
3#![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))]
10
11/// Traits, validation methods, and helper types used to abstract over engine types.
12pub use reth_engine_primitives as engine;
13pub use reth_engine_primitives::*;
14
15/// Traits and helper types used to abstract over payload types.
16pub use reth_payload_primitives as payload;
17pub use reth_payload_primitives::*;
18
19/// 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::*;
22
23/// Traits and helper types used to abstract over EVM methods and types.
24pub use reth_evm::{ConfigureEvm, NextBlockEnvAttributes};
25
26pub mod node;
27pub use node::*;
28
29// re-export for convenience
30pub use reth_node_types::*;
31pub use reth_provider::FullProvider;