alloy_rpc_types

Type Alias AnyTransactionReceipt

Source
pub type AnyTransactionReceipt = WithOtherFields<TransactionReceipt<AnyReceiptEnvelope<Log>>>;
Available on crate features eth and serde only.
Expand description

Alias for a catch-all receipt type.

Aliased Type§

struct AnyTransactionReceipt {
    pub inner: TransactionReceipt<AnyReceiptEnvelope<Log>>,
    pub other: OtherFields,
}

Fields§

§inner: TransactionReceipt<AnyReceiptEnvelope<Log>>

The inner struct.

§other: OtherFields

All fields not present in the inner struct.