reth_optimism_rpc/
lib.rs

1//! OP-Reth RPC support.
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
11pub mod engine;
12pub mod error;
13pub mod eth;
14pub mod historical;
15pub mod miner;
16pub mod sequencer;
17pub mod witness;
18
19#[cfg(feature = "client")]
20pub use engine::OpEngineApiClient;
21pub use engine::{OpEngineApi, OpEngineApiServer, OP_ENGINE_CAPABILITIES};
22pub use error::{OpEthApiError, OpInvalidTransactionError, SequencerClientError};
23pub use eth::{OpEthApi, OpEthApiBuilder, OpReceiptBuilder};
24pub use sequencer::SequencerClient;