| address | VARCHAR(16777216) | The account address holding the balance. |
| fa_store_address | VARCHAR(16777216) | Address of the fungible asset store object holding this balance for the account. |
| token_address | VARCHAR(16777216) | Address identifying the stablecoin token. |
| product_id | VARCHAR(16777216) | Allium stablecoin product identifier (e.g. usdc, usdt). Groups the canonical and bridged variants of the same stablecoin. |
| currency | VARCHAR(16777216) | Fiat currency the stablecoin is pegged to (e.g. USD, EUR). |
| token_name | VARCHAR(16777216) | Name of the stablecoin. |
| token_symbol | VARCHAR(16777216) | Symbol of the stablecoin. |
| token_decimals | NUMBER(38,0) | Decimal precision of the stablecoin. |
| raw_balance_str | VARCHAR(16777216) | Balance in the token’s smallest indivisible unit, as a string to retain full precision. |
| raw_balance | FLOAT | Balance in the token’s smallest indivisible unit. |
| balance_str | VARCHAR(16777216) | Decimal-adjusted balance as a string, to preserve full precision. |
| balance | FLOAT | Decimal-adjusted balance. |
| usd_balance | FLOAT | USD value of the balance, computed as balance multiplied by usd_exchange_rate. |
| usd_exchange_rate | FLOAT | USD price per unit of the token used to compute usd_balance. |
| price_source | VARCHAR(16777216) | Source used to determine the USD price (e.g. coingecko, peg). |
| block_date | DATE | The calendar date (UTC) this balance record belongs to. |
| last_activity_block_timestamp | TIMESTAMP_NTZ(9) | Timestamp (UTC) of the transaction containing the most recent balance-changing activity. |
| last_activity_block_height | NUMBER(38,0) | Block height of the most recent balance-changing activity. |
| last_activity_global_change_index | NUMBER(38,0) | Global state change index of the most recent balance-changing activity, used to order writes within a block. |
| unique_id | VARCHAR(16777216) | Allium’s deterministic unique identifier for this row, generated from the fields that uniquely identify the record. Stable across full refreshes. |
| _created_at | TIMESTAMP_NTZ(9) | Timestamp of when the entry was created in the database. |
| _updated_at | TIMESTAMP_NTZ(9) | Timestamp of when the entry was last updated in the database. |