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
impl Block
Sourcepub fn new(
hash: String,
parent_hash: String,
number: u64,
miner: Ustr,
gas_limit: u64,
gas_used: u64,
timestamp: UnixNanos,
chain: Option<Blockchain>,
) -> Self
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.
Sourcepub fn chain(&self) -> Blockchain
pub fn chain(&self) -> Blockchain
pub fn set_chain(&mut self, chain: Blockchain)
Sourcepub fn with_base_fee(self, fee: U256) -> Self
pub fn with_base_fee(self, fee: U256) -> Self
Sets the EIP-1559 base fee and returns self
for chaining.
Sourcepub fn with_blob_gas(self, used: U256, excess: U256) -> Self
pub fn with_blob_gas(self, used: U256, excess: U256) -> Self
Sets blob-gas metrics (EIP-4844) and returns self
for chaining.
Sourcepub fn with_l1_fee_components(
self,
price: U256,
gas_used: u64,
scalar: u64,
) -> Self
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<'de> Deserialize<'de> for Block
impl<'de> Deserialize<'de> for Block
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 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> 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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<T> Separable for Twhere
T: Display,
impl<T> Separable for Twhere
T: Display,
Source§fn separate_by_policy(&self, policy: SeparatorPolicy<'_>) -> String
fn separate_by_policy(&self, policy: SeparatorPolicy<'_>) -> String
SeparatorPolicy
. Read more