pub struct Block<T = Transaction<TxEnvelope>, H = Header> {
pub header: H,
pub uncles: Vec<B256>,
pub transactions: BlockTransactions<T>,
pub withdrawals: Option<Withdrawals>,
}Expand description
Block representation for RPC.
Fields§
§header: HHeader of the block.
uncles: Vec<B256>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>) -> Self
pub const fn new(header: H, transactions: BlockTransactions<T>) -> Self
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) -> Selfwhere
F: FnOnce(Self) -> Self,
pub fn apply<F>(self, f: F) -> Selfwhere
F: FnOnce(Self) -> Self,
Apply a function to the block, returning the modified block.
Sourcepub fn with_transactions(self, transactions: BlockTransactions<T>) -> Self
pub fn with_transactions(self, transactions: BlockTransactions<T>) -> Self
Sets the transactions for the block.
Sourcepub fn with_withdrawals(self, withdrawals: Option<Withdrawals>) -> Self
pub fn with_withdrawals(self, withdrawals: Option<Withdrawals>) -> Self
Sets the withdrawals for the block.
Sourcepub fn with_uncles(self, uncles: Vec<B256>) -> Self
pub fn with_uncles(self, uncles: Vec<B256>) -> Self
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 try_into_block_body(self) -> Result<BlockBody<T, H>, ValueError<Self>>
pub fn try_into_block_body(self) -> Result<BlockBody<T, H>, ValueError<Self>>
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::Error>where
U: TryFrom<H>,
pub fn try_convert_header<U>(self) -> Result<Block<T, U>, U::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::Error>where
U: TryFrom<T>,
pub fn try_convert_transactions<U>(self) -> Result<Block<U, H>, U::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<B256>where
T: Encodable2718,
pub fn calculate_transactions_root(&self) -> Option<B256>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: TransactionResponse, H> Block<T, H>
impl<T: TransactionResponse, H> Block<T, H>
Sourcepub fn into_full_block(self, txs: Vec<T>) -> Self
pub fn into_full_block(self, txs: Vec<T>) -> Self
Converts a block with Tx hashes into a full block.
Source§impl<T, H: Sealable + Encodable> Block<T, Header<H>>
impl<T, H: Sealable + Encodable> Block<T, Header<H>>
Sourcepub fn uncle_from_header(header: H) -> Self
pub fn uncle_from_header(header: H) -> Self
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 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<U256>) -> Selfwhere
T: Encodable,
pub fn from_consensus(block: Block<T>, total_difficulty: Option<U256>) -> Selfwhere
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: TransactionResponse, H> BlockResponse for Block<T, H>
impl<T: TransactionResponse, H> BlockResponse for Block<T, H>
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<Self::Transaction>
fn transactions_mut(&mut self) -> &mut BlockTransactions<Self::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<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl<T: Eq, H: Eq> 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> FmtForward for T
impl<T> FmtForward for T
Source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self to use its Binary implementation when Debug-formatted.Source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self to use its Display implementation when
Debug-formatted.Source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self to use its LowerExp implementation when
Debug-formatted.Source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self to use its LowerHex implementation when
Debug-formatted.Source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self to use its Octal implementation when Debug-formatted.Source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self to use its Pointer implementation when
Debug-formatted.Source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self to use its UpperExp implementation when
Debug-formatted.Source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self to use its UpperHex implementation when
Debug-formatted.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> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
Source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
Source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read moreSource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read moreSource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
Source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
Source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self, then passes self.as_ref() into the pipe function.Source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self, then passes self.as_mut() into the pipe
function.Source§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self, then passes self.deref() into the pipe function.Source§impl<T> Tap for T
impl<T> Tap for T
Source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B> of a value. Read moreSource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B> of a value. Read moreSource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R> view of a value. Read moreSource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R> view of a value. Read moreSource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target of a value. Read moreSource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target of a value. Read moreSource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap() only in debug builds, and is erased in release builds.Source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut() only in debug builds, and is erased in release
builds.Source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow() only in debug builds, and is erased in release
builds.Source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut() only in debug builds, and is erased in release
builds.Source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref() only in debug builds, and is erased in release
builds.Source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut() only in debug builds, and is erased in release
builds.Source§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref() only in debug builds, and is erased in release
builds.