alloy-reth 0.2.0

Types and provider extensions for the reth_ Ethereum JSON-RPC namespace
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![doc = include_str!("../README.md")]
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
#![cfg_attr(docsrs, feature(doc_cfg))]

/// Types for the `reth_` RPC namespace.
pub mod types;
pub use types::{
    BalanceChangesInBlock, BigBlockData, CanonStateNotification, GetBlockExecutionOutcomeParams,
    RethBigBlockData, RethNewPayloadInput, RethNewPayloadParams, RethPayloadStatus,
};

/// Provider extension for the `reth_` RPC namespace.
#[cfg(feature = "provider")]
pub mod provider;
#[cfg(feature = "provider")]
pub use provider::RethApi;