pub type AlloyBlockExternalTransaction = Block<ExternalTransaction>;
Aliased Type§
struct AlloyBlockExternalTransaction {
pub header: Header,
pub uncles: Vec<FixedBytes<32>>,
pub transactions: BlockTransactions<ExternalTransaction>,
pub withdrawals: Option<Withdrawals>,
}
Fields§
§header: Header
Header of the block.
uncles: Vec<FixedBytes<32>>
Uncles’ hashes.
transactions: BlockTransactions<ExternalTransaction>
Block Transactions. In the case of an uncle block, this field is not included in RPC responses, and when deserialized, it will be set to [BlockTransactions::Uncle].
withdrawals: Option<Withdrawals>
Withdrawals in the block.