reth_seismic_payload_builder/
lib.rs

1//! Seismic's payload builder implementation.
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/SeismicSystems/seismic-reth/issues/"
7)]
8#![cfg_attr(not(test), warn(unused_crate_dependencies))]
9#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
10#![allow(clippy::useless_let_if_seq)]
11
12pub mod builder;
13pub use builder::SeismicPayloadBuilder;
14
15pub use reth_ethereum_payload_builder::EthereumBuilderConfig as SeismicBuilderConfig;
16
17// Use reth_ethereum_primitives to suppress unused import warning
18// We import the crate ensure features such as serde and reth-codec are enabled
19// When it is pulled in by other dependencies
20use reth_ethereum_primitives as _;