eclipse.core Table: fact_events_inner Type: Base Table
Contains each inner event that occurs on Eclipse. An event can consist of more than one inner 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. |
| INSTRUCTION_INDEX | NUMBER | Location of the instruction (event) within a transaction |
| INNER_INDEX | NUMBER | Location of the instruction within an instruction’s (event) inner instruction |
| INSTRUCTION_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.. For the instruction calling this inner instruction. |
| 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 |
| FACT_EVENTS_INNER_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. |