tokens_solana.fungible table contains metadata for fungible tokens on the Solana blockchain indexed on Dune. This dataset provides essential information about Solana tokens, including:
- The token mint address
- The token name and symbol
- The number of decimals used by the token
- Additional metadata such as token URI and creation details
Utility
The Solana fungible token metadata table offers valuable information for token analysis and integration, allowing you to:- Identify tokens on the Solana blockchain
- Retrieve essential token information for calculations and display
- Access additional metadata for more comprehensive token analysis
Table Schema
| Column | Type | Description |
|---|---|---|
token_mint_address | VARCHAR | Fungible token mint address |
address_prefix | VARCHAR | Address prefix for indexing |
decimals | BIGINT | Number of decimal places for the token |
name | VARCHAR | Token name |
symbol | VARCHAR | Token symbol |
token_uri | VARCHAR | Token metadata URI |
metadata_program | VARCHAR | Program used for creating token metadata |
token_version | VARCHAR | Token program version (spl_token, token2022) |
init_tx | VARCHAR | Transaction that initialized the mint |
created_at | TIMESTAMP | When the token mint was created |