Token Programs
SPL Token Program
The original SPL Token Program is the standard for fungible and non-fungible tokens on Solana. Most tokens on Solana — including SOL-wrapped tokens, stablecoins, and meme coins — use this program. Key characteristics:- Tokens are identified by their mint address
- Each holder has an associated token account (ATA) linked to their wallet
- Token metadata (name, symbol, logo) is stored offchain via the Metaplex standard
Metaplex Metadata Standard
Most Solana tokens and NFTs use the Metaplex metadata standard to store human-readable information (name, symbol, image, attributes) offchain. Thestandard field in Moralis API responses indicates when a token follows this standard.
When Moralis returns "standard": "metaplex", the response includes a metaplex object:
Metaplex fields explained
| Field | Description |
|---|---|
metadataUri | URI pointing to the full metadata JSON (often IPFS or Arweave) |
updateAuthority | The address that can modify the token’s metadata |
sellerFeeBasisPoints | Creator royalty on secondary sales (100 = 1%) |
primarySaleHappened | Whether the initial sale has occurred |
isMutable | Whether the metadata can still be updated |
masterEdition | Whether this is a master edition NFT |
NFTs on Solana
Unlike EVM chains where NFTs are grouped under a single contract, each Solana NFT is represented by a unique mint address. Moralis returns rich NFT metadata including:- Collection data —
collectionAddress, collection name, description, and verification status - Attributes — Trait types and values (e.g.,
"traitType": "Gender", "value": "Male") - Creator information — Addresses, share percentages, and verification status
- Media previews — Low, medium, and high resolution image URLs via Moralis CDN
Some NFTs may lack a
collectionAddress or other metadata fields. You can identify Metaplex-standard NFTs by the presence of a metaplexMint value.How Moralis Uses These Standards
Moralis automatically detects the token standard and enriches responses accordingly:- Fungible tokens — Returns mint address, name, symbol, decimals, supply, logo, and market data (price, FDV)
- NFTs — Returns full Metaplex metadata, collection info, creator details, attributes, and media previews
- Token balances — Includes associated token account addresses and formatted amounts
standard field in API responses tells you which metadata standard a token uses (currently "metaplex" for most Solana tokens).
Related Pages
- Token Metadata — EVM token metadata enrichment
- NFT Metadata — NFT metadata across chains

