Struct alloy_zksync::types::L1BatchDetails
source · pub struct L1BatchDetails {Show 16 fields
pub number: u64,
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_getL1BatchDetails
.
Fields§
§number: u64
L1 batch number.
timestamp: u64
Unix timestamp when the batch was processed.
l1_tx_count: u64
Number of L1 transactions included in the batch.
l2_tx_count: u64
Number of L2 transactions associated with this batch.
root_hash: Option<B256>
Root hash of the state after processing the batch.
status: BlockStatus
Current status of the batch: sealed or verified.
commit_tx_hash: Option<B256>
L1 transaction hash for the commit operation.
committed_at: Option<DateTime<Utc>>
Timestamp when the batch was committed on L1.
prove_tx_hash: Option<B256>
L1 transaction hash for the proof submission.
proven_at: Option<DateTime<Utc>>
Timestamp when the proof was submitted.
execute_tx_hash: Option<B256>
L1 transaction hash for the execution.
executed_at: Option<DateTime<Utc>>
Timestamp when the execution was completed.
l1_gas_price: U256
Gas price on L1 at the time of batch processing.
l2_fair_gas_price: U256
Fair gas price on L2 at the time of batch processing.
fair_pubdata_price: Option<U256>
Cost of publishing one byte (in wei).
base_system_contracts_hashes: BaseSystemContractsHashes
Hashes of the base system contracts involved in the batch.
Trait Implementations§
source§impl Clone for L1BatchDetails
impl Clone for L1BatchDetails
source§fn clone(&self) -> L1BatchDetails
fn clone(&self) -> L1BatchDetails
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for L1BatchDetails
impl Debug for L1BatchDetails
source§impl<'de> Deserialize<'de> for L1BatchDetails
impl<'de> Deserialize<'de> for L1BatchDetails
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 L1BatchDetails
impl PartialEq for L1BatchDetails
source§fn eq(&self, other: &L1BatchDetails) -> bool
fn eq(&self, other: &L1BatchDetails) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for L1BatchDetails
impl Serialize for L1BatchDetails
impl StructuralPartialEq for L1BatchDetails
Auto Trait Implementations§
impl Freeze for L1BatchDetails
impl RefUnwindSafe for L1BatchDetails
impl Send for L1BatchDetails
impl Sync for L1BatchDetails
impl Unpin for L1BatchDetails
impl UnwindSafe for L1BatchDetails
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