Skip to main content
The solana.raw.fungible_tokens table contains the raw list of all fungible tokens on Solana.
Note:
The SPL standard on Solana is flexible and supports both fungible tokens (like USDC, USDT, etc.) and non-fungible tokens (NFTs). As a result, we apply a filter logic (described below) to isolate the “ERC20-like” fungible tokens.

Table Details

Isolating Fungible Tokens

  • Token Standard:
    Only include tokens where token_standard is either null, 'Fungible', 'token_ext', or 'FungibleAsset'.
  • Edition Account:
    Only include tokens where edition_acc is null or equals 'metaqbxxUerdq28cj1RbAWkYQm3ybzjb6a8bt518x1s' (the default edition account for fungible tokens).
  • Decimals:
    Exclude rows where decimals is 0.
  • ** Specific Protocol Exclusions:**
    Exclude liquidity position from Orca whirlpool, Raydium CLMM, Meteora.

Table Columns