Struct Block

Source
pub struct Block {
Show 14 fields pub chain: Option<Blockchain>, pub hash: String, pub number: u64, pub parent_hash: String, pub miner: Ustr, pub gas_limit: u64, pub gas_used: u64, pub base_fee_per_gas: Option<U256>, pub blob_gas_used: Option<U256>, pub excess_blob_gas: Option<U256>, pub l1_gas_price: Option<U256>, pub l1_gas_used: Option<u64>, pub l1_fee_scalar: Option<u64>, pub timestamp: UnixNanos,
}
Expand description

Represents an Ethereum-compatible blockchain block with essential metadata.

Fields§

§chain: Option<Blockchain>

The blockchain network this block is part of.

§hash: String

The unique identifier hash of the block.

§number: u64

The block height/number in the blockchain.

§parent_hash: String

Hash of the parent block.

§miner: Ustr

Address of the miner or validator who produced this block.

§gas_limit: u64

Maximum amount of gas allowed in this block.

§gas_used: u64

Total gas actually used by all transactions in this block.

§base_fee_per_gas: Option<U256>

EIP-1559 base fee per gas (wei); absent on pre-1559 or non-EIP chains.

§blob_gas_used: Option<U256>

Blob gas used in this block (EIP-4844); absent on chains without blobs.

§excess_blob_gas: Option<U256>

Excess blob gas remaining after block execution (EIP-4844); None if not applicable.

§l1_gas_price: Option<U256>

L1 gas price used for posting this block’s calldata (wei); Arbitrum only.

§l1_gas_used: Option<u64>

L1 calldata gas units consumed when posting this block; Arbitrum only.

§l1_fee_scalar: Option<u64>

Fixed-point (1e-6) scalar applied to the raw L1 fee; Arbitrum only.

§timestamp: UnixNanos

Unix timestamp when the block was created.

Implementations§

Source§

impl Block

Source

pub fn new( hash: String, parent_hash: String, number: u64, miner: Ustr, gas_limit: u64, gas_used: u64, timestamp: UnixNanos, chain: Option<Blockchain>, ) -> Self

Creates a new Block instance with the specified properties.

Source

pub fn chain(&self) -> Blockchain

Returns the blockchain for this block.

§Panics

Panics if the chain has not been set.

Source

pub fn set_chain(&mut self, chain: Blockchain)

Source

pub fn with_base_fee(self, fee: U256) -> Self

Sets the EIP-1559 base fee and returns self for chaining.

Source

pub fn with_blob_gas(self, used: U256, excess: U256) -> Self

Sets blob-gas metrics (EIP-4844) and returns self for chaining.

Source

pub fn with_l1_fee_components( self, price: U256, gas_used: u64, scalar: u64, ) -> Self

Sets L1 fee components relevant for Arbitrum cost calculation and returns self for chaining.

Trait Implementations§

Source§

impl Clone for Block

Source§

fn clone(&self) -> Block

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

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

Performs copy-assignment from source. Read more
Source§

impl Debug for Block

Source§

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

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

impl<'de> Deserialize<'de> for Block

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 Display for Block

Source§

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

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

impl PartialEq for Block

Source§

fn eq(&self, other: &Self) -> bool

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

const 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 Serialize for Block

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 Eq for Block

Auto Trait Implementations§

§

impl Freeze for Block

§

impl RefUnwindSafe for Block

§

impl Send for Block

§

impl Sync for Block

§

impl Unpin for Block

§

impl UnwindSafe for Block

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, dest: *mut u8)

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

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

§

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, 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> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> Separable for T
where T: Display,

Source§

fn separate_by_policy(&self, policy: SeparatorPolicy<'_>) -> String

Adds separators according to the given SeparatorPolicy. Read more
Source§

fn separate_with_commas(&self) -> String

Inserts a comma every three digits from the right. Read more
Source§

fn separate_with_spaces(&self) -> String

Inserts a space every three digits from the right. Read more
Source§

fn separate_with_dots(&self) -> String

Inserts a period every three digits from the right. Read more
Source§

fn separate_with_underscores(&self) -> String

Inserts an underscore every three digits from the right. Read more
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> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. 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.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

Source§

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

§

impl<T> Ungil for T
where T: Send,