eclipse.defi Table: fact_token_burn_actions Type: Base Table
Contains all burn events for tokens
Columns
| Column Name | Data Type | Description |
|---|---|---|
| BLOCK_ID | NUMBER | Slot for which a block can be created. |
| BLOCK_TIMESTAMP | TIMESTAMP_NTZ | The date and time at which the block began. |
| TX_ID | TEXT | A unique key that identifies a transaction |
| SUCCEEDED | BOOLEAN | True when a transaction is successful, otherwise false. |
| INDEX | NUMBER | Location of the instruction (event) within a transaction |
| INNER_INDEX | NUMBER | Location of the instruction within an instruction’s (event) inner instruction |
| EVENT_TYPE | TEXT | The type of event (i.e. “delegate”, “withdraw”) that is occurring |
| MINT | TEXT | Address of the token or NFT |
| BURN_AMOUNT | NUMBER | The number of tokens burned |
| BURN_AUTHORITY | TEXT | The account address that is authorizing the burn action |
| TOKEN_ACCOUNT | TEXT | The account address that has ownership of a specific token/nft |
| SIGNERS | TEXT | List of accounts that signed the transaction |
| DECIMAL | NUMBER | Number of decimals in the token value, need to divide amount by 10^decimal |
| MINT_STANDARD_TYPE | TEXT | The type of mint following Metaplex mint standards |
| FACT_TOKEN_BURN_ACTIONS_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. |