Struct alloy_zksync::types::BlockDetails
source · pub struct BlockDetails {Show 19 fields
pub number: u64,
pub l1_batch_number: u64,
pub operator_address: Address,
pub protocol_version: Option<String>,
pub timestamp: u64,
pub l1_tx_count: u64,
pub l2_tx_count: u64,
pub root_hash: Option<B256>,
pub status: BlockStatus,
pub commit_tx_hash: Option<B256>,
pub committed_at: Option<DateTime<Utc>>,
pub prove_tx_hash: Option<B256>,
pub proven_at: Option<DateTime<Utc>>,
pub execute_tx_hash: Option<B256>,
pub executed_at: Option<DateTime<Utc>>,
pub l1_gas_price: U256,
pub l2_fair_gas_price: U256,
pub fair_pubdata_price: Option<U256>,
pub base_system_contracts_hashes: BaseSystemContractsHashes,
}
Expand description
Response type for zks_getBlockDetails
.
Fields§
§number: u64
Number of the block.
l1_batch_number: u64
Corresponding L1 batch number.
operator_address: Address
Address of the operator who committed the block.
protocol_version: Option<String>
Version of the ZKsync protocol the block was committed under.
timestamp: u64
Unix timestamp of when the first transaction in the block was processed (i.e., when the block was opened).
l1_tx_count: u64
Number of L1 transactions included in the block.
l2_tx_count: u64
Number of L2 transactions included in the block.
root_hash: Option<B256>
Hash of the L2 block.
status: BlockStatus
Current status of the block: verified or sealed.
commit_tx_hash: Option<B256>
Transaction hash of the commit operation on L1 for the batch containing this L2 block.
committed_at: Option<DateTime<Utc>>
Timestamp when the batch containing this L2 block was committed on L1.
prove_tx_hash: Option<B256>
Transaction hash of the proof submission on L1 for the batch containing this L2 block.
proven_at: Option<DateTime<Utc>>
Timestamp when the proof was submitted on L1 for the batch containing this L2 block.
execute_tx_hash: Option<B256>
Transaction hash of the execution on L1 for the batch containing this L2 block.
executed_at: Option<DateTime<Utc>>
Timestamp when the execution was completed on L1 for the batch containing this L2 block.
l1_gas_price: U256
L1 gas price at the time of the block’s execution.
l2_fair_gas_price: U256
Fair gas price on L2 at the time of the block’s execution.
fair_pubdata_price: Option<U256>
Cost of publishing one byte (in wei).
base_system_contracts_hashes: BaseSystemContractsHashes
Hashes for the base system contracts used for block execution.
Trait Implementations§
source§impl Clone for BlockDetails
impl Clone for BlockDetails
source§fn clone(&self) -> BlockDetails
fn clone(&self) -> BlockDetails
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for BlockDetails
impl Debug for BlockDetails
source§impl<'de> Deserialize<'de> for BlockDetails
impl<'de> Deserialize<'de> for BlockDetails
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>,
source§impl PartialEq for BlockDetails
impl PartialEq for BlockDetails
source§fn eq(&self, other: &BlockDetails) -> bool
fn eq(&self, other: &BlockDetails) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for BlockDetails
impl Serialize for BlockDetails
impl StructuralPartialEq for BlockDetails
Auto Trait Implementations§
impl Freeze for BlockDetails
impl RefUnwindSafe for BlockDetails
impl Send for BlockDetails
impl Sync for BlockDetails
impl Unpin for BlockDetails
impl UnwindSafe for BlockDetails
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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 more