Table Columns
Unique Key:block_timestamp, unique_id
| Column Name | Data Type | Description |
|---|---|---|
| event_name | VARCHAR | Name of the underlying event (e.g. Mint, Burn, Transfer) |
| token_address | VARCHAR | Contract address of the stablecoin token |
| token_name | VARCHAR | Name of the stablecoin |
| token_symbol | VARCHAR | Symbol of the stablecoin |
| raw_amount | FLOAT | Mint/burn amount, unnormalized |
| raw_amount_str | VARCHAR | Mint/burn amount, unnormalized, as string for precision |
| amount | FLOAT | Mint/burn amount, normalized by token decimals |
| amount_str | VARCHAR | Mint/burn amount, normalized, as string for precision |
| usd_amount | FLOAT | Mint/burn amount valued in USD at the time of the event |
| from_address | VARCHAR | from address of the event (zero address for mints) |
| to_address | VARCHAR | to address of the event (zero address for burns) |
| transaction_from_address | VARCHAR | The address that initiated the transaction |
| transaction_to_address | VARCHAR | The transaction’s to address |
| transaction_hash | VARCHAR | Hash of the transaction containing the supply change |
| transaction_index | INTEGER | Index of the transaction within the block |
| log_index | INTEGER | Log index of the event within the transaction |
| block_timestamp | TIMESTAMP_NTZ(9) | Block timestamp of the supply change |
| block_number | INTEGER | Block number of the supply change |
| block_hash | VARCHAR | Block hash containing the supply change |
| is_mint | BOOLEAN | True if the event increased total supply |
| is_burn | BOOLEAN | True if the event decreased total supply |
| unique_id | VARCHAR | Unique identifier for the supply change event |