| token_type | VARCHAR(6) | Token standard for the asset. One of: erc20 (fungible), erc721 (non-fungible), erc1155 (semi-fungible), or the native currency symbol (e.g. eth, matic, bnb). |
| address | VARCHAR(16777216) | Address of the account |
| token_address | VARCHAR(16777216) | Address of the token |
| token_name | VARCHAR(16777216) | Name of the token |
| token_symbol | VARCHAR(16777216) | Symbol of the token |
| raw_balance_str | VARCHAR(16777216) | Balance of ERC20 token unnormalized in string format |
| raw_balance | FLOAT | Balance of ERC20 token unnormalized |
| balance_str | VARCHAR(16777216) | Balance of ERC20 token in string format |
| balance | FLOAT | Balance of ERC20 token normalized |
| usd_balance_current | FLOAT | USD balance of ERC20 token at the current timestamp |
| usd_balance_at_block_timestamp | FLOAT | USD balance of ERC20 token at the timestamp of the last activity that resulted in balance change |
| usd_exchange_rate_current | FLOAT | USD exchange rate of ERC20 token at the current timestamp |
| usd_exchange_rate_at_block_timestamp | FLOAT | USD exchange rate of ERC20 token at the timestamp of the last activity that resulted in balance update |
| last_activity_block_timestamp | TIMESTAMP_NTZ(9) | The last timestamp of the block that resulted in the balance update |
| last_activity_block_number | NUMBER(38,0) | The last block number that resulted in the balance update |
| last_activity_block_hash | VARCHAR(16777216) | The last hash of the block that resulted in the balance update |
| unique_id | VARCHAR(107) | Unique ID of the balance |
| _updated_at__usd_exchange_rate_current | TIMESTAMP_NTZ(9) | Timestamp of the current USD exchange rate |
| _updated_at__historical | TIMESTAMP_NTZ(9) | Timestamp (UTC) of the most recent update to the historical (at-block-timestamp) data for this row. |
| _created_at__onchain_lake | TIMESTAMP_NTZ(9) | Timestamp (UTC) when this row was first written to the onchain lake (the raw data layer before mart transformation). |
| _created_at | TIMESTAMP_NTZ(9) | Timestamp of when the entry was created in the database. |
| _updated_at | TIMESTAMP_NTZ(9) | Timestamp of the balance update |
| _changed_since_full_refresh | BOOLEAN | Indicates if the record has changed since the last full data refresh. |