1//! Standalone crate for Optimism-specific Reth configuration and builder types.
2//!
3//! # features
4//! - `js-tracer`: Enable the `JavaScript` tracer for the `debug_trace` endpoints
56#![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(docsrs, feature(doc_cfg, doc_auto_cfg))]
12#![cfg_attr(not(test), warn(unused_crate_dependencies))]
1314/// CLI argument parsing for the optimism node.
15pub mod args;
1617/// Exports optimism-specific implementations of the [`EngineTypes`](reth_node_api::EngineTypes)
18/// trait.
19pub mod engine;
20pub use engine::OpEngineTypes;
2122pub mod node;
23pub use node::{OpNetworkPrimitives, OpNode};
2425pub mod rpc;
26pub use rpc::OpEngineApiBuilder;
2728pub mod version;
29pub use version::OP_NAME_CLIENT;
3031pub use reth_optimism_txpoolas txpool;
3233/// Helpers for running test node instances.
34#[cfg(feature = "test-utils")]
35pub mod utils;
3637pub use reth_optimism_payload_builder::{
38OpBuiltPayload, OpPayloadAttributes, OpPayloadBuilder, OpPayloadBuilderAttributes,
39};
4041pub use reth_optimism_evm::*;