| address | VARCHAR(16777216) | The account address holding the balance. |
| token_address | VARCHAR(16777216) | Identifier of the stablecoin asset, combining the asset code and issuer. |
| asset_code | VARCHAR(16777216) | Asset code of the stablecoin as declared on-chain (e.g. USDC). |
| asset_issuer | VARCHAR(16777216) | Account address that issued the asset. |
| 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 asset’s smallest indivisible unit, as a string to retain full precision. |
| raw_balance | FLOAT | Balance in the asset’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 asset 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_ledger_close_time | TIMESTAMP_NTZ(9) | Close time (UTC) of the ledger containing the most recent balance-changing activity. |
| last_activity_ledger_sequence | NUMBER(38,0) | Sequence number of the ledger containing the most recent balance-changing activity. |
| last_activity_ledger_hash | VARCHAR(16777216) | Hash of the ledger containing the most recent balance-changing activity. |
| 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. |