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. |