Block-level balance changes of fungible tokens (native & ERC20 tokens) across all addresses.
unique_id
Column Name | Data Type | Description |
---|---|---|
token_type | VARCHAR | Identifies whether the balance record is for a native or erc20 token |
address | VARCHAR | The wallet address holding the tokens |
token_address | VARCHAR | Contract address of the token |
token_name | VARCHAR | Name of the token |
token_symbol | VARCHAR | Symbol of the token |
raw_balance_str | VARCHAR | Token balance, unnormalized, as string to retain precision |
raw_balance | FLOAT | Token balance, unnormalized |
balance_str | VARCHAR | Token balance as string to retain precision |
balance | FLOAT | Token balance, normalized |
usd_balance | FLOAT | Token balance, normalized, in USD |
usd_exchange_rate | FLOAT | Exchange rate used for USD conversion |
block_timestamp | TIMESTAMP_NTZ(9) | Timestamp of the block |
block_number | BIGINT | Number of the block |
block_hash | VARCHAR | Hash of the block |
unique_id | VARCHAR | Unique identifier combining block, address, token address |
_created_at | TIMESTAMP_NTZ(9) | Timestamp of when the entry was created |
_updated_at | TIMESTAMP_NTZ(9) | Timestamp of when the entry was last updated |