alloy_rpc_types

Type Alias AnyNetworkBlock

source
pub type AnyNetworkBlock = WithOtherFields<Block<WithOtherFields<Transaction>>>;
Available on crate features eth and serde only.
Expand description

A catch-all block type for handling blocks on multiple networks.

Aliased Type§

struct AnyNetworkBlock {
    pub inner: Block<WithOtherFields<Transaction>>,
    pub other: OtherFields,
}

Fields§

§inner: Block<WithOtherFields<Transaction>>

The inner struct.

§other: OtherFields

All fields not present in the inner struct.