> ## Documentation Index
> Fetch the complete documentation index at: https://docs.allium.so/llms.txt
> Use this file to discover all available pages before exploring further.

# Fungible Balances

### Table Details

| Property     | Value                               |
| ------------ | ----------------------------------- |
| Table Name   | `ethereal.assets.fungible_balances` |
| Table Status | Production-Ready                    |
| Unique Key   | `block_timestamp`, `unique_id`      |

### Table Columns

| Column Name         | Data Type         | Description                                                              |
| ------------------- | ----------------- | ------------------------------------------------------------------------ |
| token\_type         | VARCHAR(16777216) | Identifies whether the balance record is for a `native` or `erc20` token |
| address             | VARCHAR(42)       | The wallet address holding the tokens                                    |
| token\_address      | VARCHAR(42)       | Contract 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) | Token balance, unnormalized, as string to retain precision               |
| raw\_balance        | FLOAT             | Token balance, unnormalized                                              |
| balance\_str        | VARCHAR(16777216) | 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       | NUMBER(38,0)      | Number of the block                                                      |
| block\_hash         | VARCHAR(16777216) | Hash of the block                                                        |
| unique\_id          | VARCHAR(16777216) | 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                             |

### Related Docs

* [EVM Assets Fungible Balances](/historical-data/supported-blockchains/evm/core-schemas/assets/balances/fungible-balances)
