Table Details
| Property | Value |
|---|---|
| Table Name | starknet.raw.events |
| Table Status | Production-Ready |
| Unique Key | block_timestamp, transaction_hash, event_index |
| Clustering Key(s) | to_date("block_timestamp") |
| Search Optimization | from_address |
Table Columns
| Column Name | Data Type | Description |
|---|---|---|
| from_address | VARCHAR(16777216) | The address of the contract that emitted this event. |
| keys | VARIANT | Array of event keys (topics) that identify the event type and indexed parameters. |
| data | VARIANT | Array of event data containing the non-indexed parameters of the event. |
| event_index | NUMBER(38,0) | The position of this event within the transaction that emitted it. |
| block_number | NUMBER(38,0) | The block number where this event was emitted. |
| block_timestamp | TIMESTAMP_NTZ(9) | The timestamp of the block where this event was emitted. |
| block_hash | VARCHAR(16777216) | The hash of the block where this event was emitted. |
| transaction_hash | VARCHAR(16777216) | The hash of the transaction that emitted this event. |
| transaction_index | NUMBER(38,0) | The index of the transaction within its block. |
| unique_id | VARCHAR(16777216) | Unique identifier for this event |
| _created_at | TIMESTAMP_NTZ(9) | Timestamp when the record was created. |
| _updated_at | TIMESTAMP_NTZ(9) | Timestamp when the record was last updated. |