pub struct Block<T = Transaction, H = Header> {
pub header: H,
pub uncles: Vec<FixedBytes<32>>,
pub transactions: BlockTransactions<T>,
pub withdrawals: Option<Withdrawals>,
}eth only.Expand description
Block representation for RPC.
Fields§
§header: HHeader of the block.
uncles: Vec<FixedBytes<32>>Uncles’ hashes.
transactions: BlockTransactions<T>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.
Implementations§
Source§impl<T, H> Block<T, H>
impl<T, H> Block<T, H>
Sourcepub const fn new(header: H, transactions: BlockTransactions<T>) -> Block<T, H>
pub const fn new(header: H, transactions: BlockTransactions<T>) -> Block<T, H>
Creates a new Block with the given header and transactions.
Note: This does not set the withdrawals for the block.
use alloy_eips::eip4895::Withdrawals;
use alloy_network_primitives::BlockTransactions;
use alloy_rpc_types_eth::{Block, Header, Transaction};
let block = Block::new(
Header::new(alloy_consensus::Header::default()),
BlockTransactions::<Transaction>::Full(vec![]),
)
.with_withdrawals(Some(Withdrawals::default()));Sourcepub fn number(&self) -> u64where
H: BlockHeader,
pub fn number(&self) -> u64where
H: BlockHeader,
Returns the block’s number.
Sourcepub fn apply<F>(self, f: F) -> Block<T, H>
pub fn apply<F>(self, f: F) -> Block<T, H>
Apply a function to the block, returning the modified block.
Sourcepub fn with_transactions(
self,
transactions: BlockTransactions<T>,
) -> Block<T, H>
pub fn with_transactions( self, transactions: BlockTransactions<T>, ) -> Block<T, H>
Sets the transactions for the block.
Sourcepub fn with_withdrawals(self, withdrawals: Option<Withdrawals>) -> Block<T, H>
pub fn with_withdrawals(self, withdrawals: Option<Withdrawals>) -> Block<T, H>
Sets the withdrawals for the block.
Sourcepub fn with_uncles(self, uncles: Vec<FixedBytes<32>>) -> Block<T, H>
pub fn with_uncles(self, uncles: Vec<FixedBytes<32>>) -> Block<T, H>
Sets the uncles for the block.
Sourcepub fn try_into_transactions(
self,
) -> Result<Vec<T>, ValueError<BlockTransactions<T>>>
pub fn try_into_transactions( self, ) -> Result<Vec<T>, ValueError<BlockTransactions<T>>>
Tries to convert inner transactions into a vector of full transactions
Returns an error if the block contains only transaction hashes or if it is an uncle block.
Sourcepub fn into_transactions_vec(self) -> Vec<T>
pub fn into_transactions_vec(self) -> Vec<T>
Consumes the type and returns the transactions as a vector.
Note: if this is an uncle or hashes, this will return an empty vector.
Sourcepub fn into_hashes_vec(self) -> Vec<FixedBytes<32>>where
T: TransactionResponse,
pub fn into_hashes_vec(self) -> Vec<FixedBytes<32>>where
T: TransactionResponse,
Consumes the type and returns the transaction hashes as a vector.
Note: if this is an uncle, this will return an empty vector.
Sourcepub fn try_into_block_body(
self,
) -> Result<BlockBody<T, H>, ValueError<Block<T, H>>>
pub fn try_into_block_body( self, ) -> Result<BlockBody<T, H>, ValueError<Block<T, H>>>
Converts this block into a BlockBody.
Returns an error if the transactions are not full or if the block has uncles.
Sourcepub fn into_block_body_unchecked(self) -> BlockBody<T, H>
pub fn into_block_body_unchecked(self) -> BlockBody<T, H>
Converts this block into a BlockBody
Caution: The body will have empty transactions unless the block’s transactions are
BlockTransactions::Full. This will disregard ommers/uncles and always return an empty
ommers vec.
Sourcepub fn into_consensus_block(self) -> Block<T, H>
pub fn into_consensus_block(self) -> Block<T, H>
Consumes the block and returns the alloy_consensus::Block with the current transaction
and header type.
Note: Unlike Self::into_consensus, this method returns the Header type H as-is without
converting it to alloy_consensus::Header, See Header::into_consensus.
This has two caveats:
- The returned block will always have empty uncles.
- If the block’s transaction is not
BlockTransactions::Full, the returned block will have an empty transaction vec.
Sourcepub fn map_header<U>(self, f: impl FnOnce(H) -> U) -> Block<T, U>
pub fn map_header<U>(self, f: impl FnOnce(H) -> U) -> Block<T, U>
Converts the block’s header type by applying a function to it.
Sourcepub fn into_header(self) -> H
pub fn into_header(self) -> H
Consumes the block and only returns the rpc header.
To obtain the underlying alloy_consensus::Header use Block::into_consensus_header.
Sourcepub fn try_convert_header<U>(
self,
) -> Result<Block<T, U>, <U as TryFrom<H>>::Error>where
U: TryFrom<H>,
pub fn try_convert_header<U>(
self,
) -> Result<Block<T, U>, <U as TryFrom<H>>::Error>where
U: TryFrom<H>,
Converts the block’s header type to the given alternative that is TryFrom<H>
Sourcepub fn try_map_header<U, E>(
self,
f: impl FnOnce(H) -> Result<U, E>,
) -> Result<Block<T, U>, E>
pub fn try_map_header<U, E>( self, f: impl FnOnce(H) -> Result<U, E>, ) -> Result<Block<T, U>, E>
Converts the block’s header type by applying a fallible function to it.
Sourcepub fn convert_transactions<U>(self) -> Block<U, H>where
U: From<T>,
pub fn convert_transactions<U>(self) -> Block<U, H>where
U: From<T>,
Converts the block’s transaction type to the given alternative that is From<T>
Sourcepub fn try_convert_transactions<U>(
self,
) -> Result<Block<U, H>, <U as TryFrom<T>>::Error>where
U: TryFrom<T>,
pub fn try_convert_transactions<U>(
self,
) -> Result<Block<U, H>, <U as TryFrom<T>>::Error>where
U: TryFrom<T>,
Converts the block’s transaction to the given alternative that is TryFrom<T>
Returns the block with the new transaction type if all conversions were successful.
Sourcepub fn map_transactions<U>(self, f: impl FnMut(T) -> U) -> Block<U, H>
pub fn map_transactions<U>(self, f: impl FnMut(T) -> U) -> Block<U, H>
Converts the block’s transaction type by applying a function to each transaction.
Returns the block with the new transaction type.
Sourcepub fn try_map_transactions<U, E>(
self,
f: impl FnMut(T) -> Result<U, E>,
) -> Result<Block<U, H>, E>
pub fn try_map_transactions<U, E>( self, f: impl FnMut(T) -> Result<U, E>, ) -> Result<Block<U, H>, E>
Converts the block’s transaction type by applying a fallible function to each transaction.
Returns the block with the new transaction type if all transactions were mapped successfully.
Sourcepub fn calculate_transactions_root(&self) -> Option<FixedBytes<32>>where
T: Encodable2718,
pub fn calculate_transactions_root(&self) -> Option<FixedBytes<32>>where
T: Encodable2718,
Calculate the transaction root for the full transactions in this block type.
Returns None if the transactions is not the BlockTransactions::Full variant.
Source§impl<T, H> Block<T, H>where
T: TransactionResponse,
impl<T, H> Block<T, H>where
T: TransactionResponse,
Sourcepub fn into_full_block(self, txs: Vec<T>) -> Block<T, H>
pub fn into_full_block(self, txs: Vec<T>) -> Block<T, H>
Converts a block with Tx hashes into a full block.
Source§impl<T, H> Block<T, Header<H>>
impl<T, H> Block<T, Header<H>>
Sourcepub fn uncle_from_header(header: H) -> Block<T, Header<H>>
pub fn uncle_from_header(header: H) -> Block<T, Header<H>>
Constructs an “uncle block” from the provided header.
This function creates a new Block structure for uncle blocks (ommer blocks),
using the provided alloy_consensus::Header.
Source§impl<T> Block<T>
impl<T> Block<T>
Sourcepub const fn hash(&self) -> FixedBytes<32>
pub const fn hash(&self) -> FixedBytes<32>
Returns the block’s hash as received from rpc.
Sourcepub const fn sealed_header(&self) -> Sealed<&Header>
pub const fn sealed_header(&self) -> Sealed<&Header>
Returns a sealed reference of the header: Sealed<&Header>
Sourcepub fn into_sealed_header(self) -> Sealed<Header>
pub fn into_sealed_header(self) -> Sealed<Header>
Consumes the type and returns the sealed alloy_consensus::Header.
Sourcepub fn into_consensus_header(self) -> Header
pub fn into_consensus_header(self) -> Header
Consumes the type, strips away the rpc context from the rpc Header type and just returns
the alloy_consensus::Header.
Sourcepub fn from_consensus(
block: Block<T>,
total_difficulty: Option<Uint<256, 4>>,
) -> Block<T>where
T: Encodable,
pub fn from_consensus(
block: Block<T>,
total_difficulty: Option<Uint<256, 4>>,
) -> Block<T>where
T: Encodable,
Constructs block from a consensus block and total_difficulty.
Sourcepub fn into_consensus(self) -> Block<T>
pub fn into_consensus(self) -> Block<T>
Consumes the block and returns the ethereum alloy_consensus::Block with the ethereum
header type.
This has two caveats:
- The returned block will always have empty uncles.
- If the block’s transaction is not
BlockTransactions::Full, the returned block will have an empty transaction vec.
Sourcepub fn into_consensus_sealed(self) -> Sealed<Block<T>>
pub fn into_consensus_sealed(self) -> Sealed<Block<T>>
Same as Self::into_consensus but returns the block as Sealed with the block’s hash.
Trait Implementations§
Source§impl<T, H> BlockResponse for Block<T, H>where
T: TransactionResponse,
impl<T, H> BlockResponse for Block<T, H>where
T: TransactionResponse,
Source§type Transaction = T
type Transaction = T
Source§fn transactions(&self) -> &BlockTransactions<T>
fn transactions(&self) -> &BlockTransactions<T>
Source§fn transactions_mut(
&mut self,
) -> &mut BlockTransactions<<Block<T, H> as BlockResponse>::Transaction>
fn transactions_mut( &mut self, ) -> &mut BlockTransactions<<Block<T, H> as BlockResponse>::Transaction>
Source§fn other_fields(&self) -> Option<&OtherFields>
fn other_fields(&self) -> Option<&OtherFields>
other field from WithOtherFields type.Source§impl<'de, T, H> Deserialize<'de> for Block<T, H>where
T: Deserialize<'de>,
H: Deserialize<'de>,
impl<'de, T, H> Deserialize<'de> for Block<T, H>where
T: Deserialize<'de>,
H: Deserialize<'de>,
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<Block<T, H>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<Block<T, H>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Source§impl<T, H> Serialize for Block<T, H>
impl<T, H> Serialize for Block<T, H>
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
impl<T, H> Eq for Block<T, H>
impl<T, H> StructuralPartialEq for Block<T, H>
Auto Trait Implementations§
impl<T, H> Freeze for Block<T, H>where
H: Freeze,
impl<T, H> RefUnwindSafe for Block<T, H>where
H: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, H> Send for Block<T, H>
impl<T, H> Sync for Block<T, H>
impl<T, H> Unpin for Block<T, H>
impl<T, H> UnwindSafe for Block<T, H>where
H: UnwindSafe,
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
Source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
Source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.