Struct alloy_zksync::types::L2ToL1Log
source · pub struct L2ToL1Log {Show 13 fields
pub block_hash: Option<B256>,
pub block_number: U64,
pub l1_batch_number: Option<U64>,
pub log_index: U256,
pub transaction_index: U64,
pub transaction_hash: B256,
pub transaction_log_index: U256,
pub tx_index_in_l1_batch: Option<U64>,
pub shard_id: U64,
pub is_service: bool,
pub sender: Address,
pub key: B256,
pub value: B256,
}
Expand description
Type for L2 to L1 logs that are returned as a part of eth_getTransactionReceipt
response.
Fields§
§block_hash: Option<B256>
Hash of the block where this log was in.
block_number: U64
Block number where this log was in.
l1_batch_number: Option<U64>
L1 batch number where this log was in.
log_index: U256
Log index position in the block.
transaction_index: U64
Transaction index position from which the log created.
transaction_hash: B256
Hash of the transactions from which this log was created.
transaction_log_index: U256
Log index position in the transaction.
tx_index_in_l1_batch: Option<U64>
The number of the transaction in the batch where the log occurred.
shard_id: U64
The id of the shard the opcode was called (it is currently always 0).
is_service: bool
A boolean flag that indicates whether the log is a service log. It is not used right now.
sender: Address
The value of this in the frame where the L2 to L1 log was emitted.
key: B256
Key and value are two 32-byte values that can be used to carry some data with the log.
value: B256
Key and value are two 32-byte values that can be used to carry some data with the log.
Trait Implementations§
source§impl<'de> Deserialize<'de> for L2ToL1Log
impl<'de> Deserialize<'de> for L2ToL1Log
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 L2ToL1Log
impl PartialEq for L2ToL1Log
impl StructuralPartialEq for L2ToL1Log
Auto Trait Implementations§
impl Freeze for L2ToL1Log
impl RefUnwindSafe for L2ToL1Log
impl Send for L2ToL1Log
impl Sync for L2ToL1Log
impl Unpin for L2ToL1Log
impl UnwindSafe for L2ToL1Log
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