Table Details
| Property | Value |
|---|---|
| Table Name | stellar.assets.fungible_balances_daily |
| Table Status | Production-Ready |
Table Columns
| Column Name | Data Type | Description |
|---|---|---|
| date | TIMESTAMP_NTZ(9) | Calendar date (UTC) of the daily balance snapshot. |
| account_id | VARCHAR(16777216) | Stellar account (G-address) holding the balance. |
| asset_type | VARCHAR(16777216) | Stellar asset type: native, credit_alphanum4, or credit_alphanum12. |
| asset_id | VARCHAR(16777216) | Composite asset identifier in issuer:code form for Classic assets. |
| asset_code | VARCHAR(16777216) | Asset code for the Classic asset. |
| asset_issuer | VARCHAR(16777216) | Issuer G-address of the Classic asset. |
| raw_balance_str | VARCHAR(16777216) | Balance in stroops (unnormalized integer), stored as a string for full precision. |
| raw_balance | FLOAT | Balance in stroops (unnormalized), not decimal-adjusted. |
| balance_str | VARCHAR(16777216) | Normalized balance stored as a string for full precision. |
| balance | FLOAT | Balance normalized by the asset’s decimal precision (raw_balance / 10^decimals). |
| usd_exchange_rate | FLOAT | USD price per unit of the asset, used to compute usd_balance. |
| usd_balance | FLOAT | USD value of the balance on this date. |
| last_activity_ledger_close_time | TIMESTAMP_NTZ(9) | Close time of the last ledger in which this account had activity. |
| last_activity_ledger_sequence | NUMBER(38,0) | Sequence number of the last ledger in which this account had activity. |
| last_activity_ledger_hash | VARCHAR(16777216) | Hash of the last ledger in which this account had activity. |