Struct Block

Source
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: H

Header 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>

Source

pub const fn empty(header: H) -> Self

Creates a new empty block (without transactions).

Source

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()));
Source

pub fn apply<F>(self, f: F) -> Self
where F: FnOnce(Self) -> Self,

Apply a function to the block, returning the modified block.

Source

pub fn with_transactions(self, transactions: BlockTransactions<T>) -> Self

Sets the transactions for the block.

Source

pub fn with_withdrawals(self, withdrawals: Option<Withdrawals>) -> Self

Sets the withdrawals for the block.

Source

pub fn with_uncles(self, uncles: Vec<B256>) -> Self

Sets the uncles for the block.

Source

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.

Source

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.

Source

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.

Source

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.

Source

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.

Source

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.

Source

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.

Source

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>

Source

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.

Source

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.

Source

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.

Source

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>

Source

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>>

Source

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>

Source

pub fn into_sealed_header(self) -> Sealed<Header>

Consumes the type and returns the sealed alloy_consensus::Header.

Source

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.

Source

pub fn from_consensus(block: Block<T>, total_difficulty: Option<U256>) -> Self
where T: Encodable,

Constructs block from a consensus block and total_difficulty.

Source

pub fn into_consensus(self) -> Block<T>

Consumes the block and returns the alloy_consensus::Block.

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.

Trait Implementations§

Source§

impl<T: TransactionResponse, H> BlockResponse for Block<T, H>

Source§

type Header = H

Header type
Source§

type Transaction = T

Transaction type
Source§

fn header(&self) -> &Self::Header

Block header
Source§

fn transactions(&self) -> &BlockTransactions<T>

Block transactions
Source§

fn transactions_mut(&mut self) -> &mut BlockTransactions<Self::Transaction>

Mutable reference to block transactions
Source§

fn other_fields(&self) -> Option<&OtherFields>

Returns the other field from WithOtherFields type.
Source§

impl<T: Clone, H: Clone> Clone for Block<T, H>

Source§

fn clone(&self) -> Block<T, H>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T: Debug, H: Debug> Debug for Block<T, H>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T, H: Default> Default for Block<T, H>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

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>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl From<Block> for WithOtherFields<Block>

Source§

fn from(inner: Block) -> Self

Converts to this type from the input type.
Source§

impl<T: PartialEq, H: PartialEq> PartialEq for Block<T, H>

Source§

fn eq(&self, other: &Block<T, H>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T, H> Serialize for Block<T, H>
where T: Serialize, H: Serialize,

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl<T: Eq, H: Eq> Eq for Block<T, H>

Source§

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>

§

impl<T, H> Send for Block<T, H>
where H: Send, T: Send,

§

impl<T, H> Sync for Block<T, H>
where H: Sync, T: Sync,

§

impl<T, H> Unpin for Block<T, H>
where H: Unpin, T: Unpin,

§

impl<T, H> UnwindSafe for Block<T, H>
where H: UnwindSafe, T: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts 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 more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,