> ## 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 Tokens

### Table Details

| Property     | Value                        |
| ------------ | ---------------------------- |
| Table Name   | `hedera.raw.fungible_tokens` |
| Table Status | Production-Ready             |
| Unique Key   | `address`                    |

### Table Columns

| Column Name           | Data Type         | Description                                                                                       |
| --------------------- | ----------------- | ------------------------------------------------------------------------------------------------- |
| token\_id             | VARCHAR(16777216) | Hedera token ID in the format `{shard}.{realm}.{num}` identifying this fungible token.            |
| name                  | VARCHAR(16777216) | Name of this token.                                                                               |
| symbol                | VARCHAR(16777216) | Ticker symbol of this token.                                                                      |
| type                  | VARCHAR(16777216) | Hedera token type. For this table always `FUNGIBLE_COMMON`.                                       |
| decimals              | NUMBER(38,0)      | Number of decimal places for this token.                                                          |
| treasury\_account\_id | VARCHAR(16777216) | Hedera account ID designated as the treasury for this token, receiving initial supply and fees.   |
| total\_supply         | VARCHAR(16777216) | Total token supply outstanding (minted minus burned), in the token's smallest denomination.       |
| initial\_supply       | VARCHAR(16777216) | Initial token supply minted at token creation, in the token's smallest denomination.              |
| max\_supply           | VARCHAR(16777216) | Maximum token supply allowed for FINITE supply-type tokens, in the token's smallest denomination. |
| supply\_type          | VARCHAR(16777216) | Token supply model: INFINITE (no cap) or FINITE (fixed max supply).                               |
| created\_timestamp    | TIMESTAMP\_NTZ(9) | Timestamp when this token was created.                                                            |
| modified\_timestamp   | TIMESTAMP\_NTZ(9) | Timestamp of the last modification to this token.                                                 |
| deleted               | BOOLEAN           | True if this token has been deleted from the network.                                             |
| \_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.                                     |
