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

source§

fn clone(&self) -> BlockDetails

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 Debug for BlockDetails

source§

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

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

impl<'de> Deserialize<'de> for BlockDetails

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 PartialEq for BlockDetails

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for BlockDetails

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 StructuralPartialEq for BlockDetails

Auto Trait Implementations§

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§

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

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

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

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

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

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

§

type Output = T

Should always be Self
source§

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

§

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

§

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

§

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

§

impl<T> WithSubscriber for T

§

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
§

fn with_current_subscriber(self) -> WithDispatch<Self>

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

impl<'de, T> BorrowedRpcObject<'de> for T
where T: RpcBorrow<'de> + RpcSend,

source§

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

§

impl<T> ErasedDestructor for T
where T: 'static,

§

impl<T> MaybeSendSync for T

§

impl<'de, T> RpcBorrow<'de> for T
where T: Deserialize<'de> + Debug + Send + Sync + Unpin,

§

impl<T> RpcObject for T
where T: RpcSend + RpcRecv,

§

impl<T> RpcRecv for T
where T: DeserializeOwned + Debug + Send + Sync + Unpin + 'static,

§

impl<T> RpcSend for T
where T: Serialize + Clone + Debug + Send + Sync + Unpin,