Raw
Messages
Table Columns
Unique Key: unique_id
Column Name | Data Type | Description |
---|---|---|
contract_address | VARCHAR | The address of the contract that sent or received this message. |
entry_point_selector | VARCHAR | The selector of the entry point function associated with this message. |
from_address | VARCHAR | The address that sent this message. |
to_address | VARCHAR | The address that received this message. |
message_hash | VARCHAR | Unique hash identifier for this message. |
message_index | BIGINT | The position of this message within the transaction that sent it. |
message_source | VARCHAR | The source of the message (e.g., ‘L1’, ‘L2’). |
nonce | BIGINT | The nonce associated with this message for ordering and uniqueness. |
payload | VARIANT | The data payload of the message. |
type | VARCHAR | The type of message (e.g., ‘L1_TO_L2’, ‘L2_TO_L1’). |
execution_status | VARCHAR | The execution status of the message (e.g., ‘SUCCEEDED’, ‘REVERTED’). |
finality_status | VARCHAR | The finality status of the message (e.g., ‘ACCEPTED_ON_L1’, ‘ACCEPTED_ON_L2’). |
version | BIGINT | The version of the message format. |
block_number | BIGINT | The block number where this message was processed. |
block_timestamp | TIMESTAMP_NTZ(9) | The timestamp of the block where this message was processed. |
block_hash | VARCHAR | The hash of the block where this message was processed. |
transaction_hash | VARCHAR | The hash of the transaction that sent this message. |
transaction_index | BIGINT | The index of the transaction within its block. |
unique_id | VARCHAR | Unique identifier for this message |
_created_at | TIMESTAMP_NTZ(9) | Timestamp when the record was created. |
_updated_at | TIMESTAMP_NTZ(9) | Timestamp when the record was last updated. |