eclipse.core Table: fact_events Type: Base Table
Contains each event that occurs on Eclipse. A transaction can consist of more than one event.
Columns
| Column Name | Data Type | Description |
|---|---|---|
| BLOCK_TIMESTAMP | TIMESTAMP_NTZ | The date and time at which the block began. |
| BLOCK_ID | NUMBER | Slot for which a block can be created. |
| TX_ID | TEXT | A unique key that identifies a transaction |
| SIGNERS | ARRAY | List of accounts that signed the transaction |
| SUCCEEDED | BOOLEAN | True when a transaction is successful, otherwise false. |
| INDEX | NUMBER | Location of the instruction (event) within a transaction |
| PROGRAM_ID | TEXT | An address that identifies the program that is being interacted with. I.E. which DEX for a swap or marketplace for an NFT sale. |
| EVENT_TYPE | TEXT | The type of event (i.e. “delegate”, “withdraw”) that is occurring |
| INSTRUCTION | VARIANT | Specifies which program it is calling, which accounts it wants to read or modify, and additional data that serves as auxiliary input to the program |
| INNER_INSTRUCTION | VARIANT | A call from one smart contract program to another |
| INNER_INSTRUCTION_PROGRAM_IDS | ARRAY | List of program ids that is called by the instruction |
| FACT_EVENTS_ID | TEXT | The unique identifier for each row in the table. |
| INSERTED_TIMESTAMP | TIMESTAMP_NTZ | The timestamp at which the record was initially created and inserted into this table. |
| MODIFIED_TIMESTAMP | TIMESTAMP_NTZ | The timestamp at which this record was last modified by an internal process. |