Struct alloy_zksync::network::receipt_response::ReceiptResponse
source · pub struct ReceiptResponse<T = ReceiptEnvelope<Log>> { /* private fields */ }
Expand description
Transaction receipt type that includes L2 specific fields.
Implementations§
source§impl ReceiptResponse
impl ReceiptResponse
sourcepub fn logs_bloom(&self) -> Bloom
pub fn logs_bloom(&self) -> Bloom
Transaction receipt’s logs bloom.
sourcepub fn l1_batch_number(&self) -> Option<U64>
pub fn l1_batch_number(&self) -> Option<U64>
Number of the l1 batch this transaction was included within.
sourcepub fn l1_batch_tx_index(&self) -> Option<U64>
pub fn l1_batch_tx_index(&self) -> Option<U64>
Index of transaction in l1 batch.
sourcepub fn l2_to_l1_logs(&self) -> &[L2ToL1Log]
pub fn l2_to_l1_logs(&self) -> &[L2ToL1Log]
L2 to L1 logs generated within this transaction.
Returns the authorization list for the transaction.
Trait Implementations§
source§impl<T: Clone> Clone for ReceiptResponse<T>
impl<T: Clone> Clone for ReceiptResponse<T>
source§fn clone(&self) -> ReceiptResponse<T>
fn clone(&self) -> ReceiptResponse<T>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<T: Debug> Debug for ReceiptResponse<T>
impl<T: Debug> Debug for ReceiptResponse<T>
source§impl<'de, T> Deserialize<'de> for ReceiptResponse<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for ReceiptResponse<T>where
T: Deserialize<'de>,
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<T: PartialEq> PartialEq for ReceiptResponse<T>
impl<T: PartialEq> PartialEq for ReceiptResponse<T>
source§fn eq(&self, other: &ReceiptResponse<T>) -> bool
fn eq(&self, other: &ReceiptResponse<T>) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl<T: TxReceipt<Log = Log>> ReceiptResponse for ReceiptResponse<T>
impl<T: TxReceipt<Log = Log>> ReceiptResponse for ReceiptResponse<T>
source§fn contract_address(&self) -> Option<Address>
fn contract_address(&self) -> Option<Address>
Address of the created contract, or None
if the transaction was not a deployment.
source§fn block_hash(&self) -> Option<BlockHash>
fn block_hash(&self) -> Option<BlockHash>
Hash of the block this transaction was included within.
source§fn block_number(&self) -> Option<u64>
fn block_number(&self) -> Option<u64>
Number of the block this transaction was included within.
source§fn transaction_hash(&self) -> TxHash
fn transaction_hash(&self) -> TxHash
Transaction Hash.
source§fn transaction_index(&self) -> Option<u64>
fn transaction_index(&self) -> Option<u64>
Index within the block.
source§fn effective_gas_price(&self) -> u128
fn effective_gas_price(&self) -> u128
Effective gas price.
source§fn blob_gas_used(&self) -> Option<u64>
fn blob_gas_used(&self) -> Option<u64>
Blob gas used by the eip-4844 transaction.
source§fn blob_gas_price(&self) -> Option<u128>
fn blob_gas_price(&self) -> Option<u128>
Blob gas price paid by the eip-4844 transaction.
source§fn cumulative_gas_used(&self) -> u64
fn cumulative_gas_used(&self) -> u64
Returns the cumulative gas used at this receipt.
source§fn state_root(&self) -> Option<B256>
fn state_root(&self) -> Option<B256>
The post-transaction state root (pre Byzantium)
EIP98 makes this field optional.
source§impl<T> Serialize for ReceiptResponse<T>where
T: Serialize,
impl<T> Serialize for ReceiptResponse<T>where
T: Serialize,
impl<T> StructuralPartialEq for ReceiptResponse<T>
Auto Trait Implementations§
impl<T> Freeze for ReceiptResponse<T>where
T: Freeze,
impl<T> RefUnwindSafe for ReceiptResponse<T>where
T: RefUnwindSafe,
impl<T> Send for ReceiptResponse<T>where
T: Send,
impl<T> Sync for ReceiptResponse<T>where
T: Sync,
impl<T> Unpin for ReceiptResponse<T>where
T: Unpin,
impl<T> UnwindSafe for ReceiptResponse<T>where
T: UnwindSafe,
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