mainnet 11:54:29 UTC
/index/ /tools/ /15 solana-token-lookup
live

Solana token
lookup.

Standard
SPL
+ Token-2022
Source
on-chain
getAccountInfo (jsonParsed)
Cache
5 min
server-side TTL
Auth
None
no wallet, no API key
/15SOLANA SPL LOOKUP
↺ reset
/reference — common SPL decimals
tokendecimalsnote
SOL (native)9protocol-level lamport unit
USDC, USDT6stablecoins follow USD precision
most SPL tokens6 or 9project preference
BONK5memecoin convention
NFTs (legacy)0supply 1, indivisible
/notes
01
Mint authorities are everything.
If mint authority is active, someone can mint more of the token at any time — supply is not capped. If it's revoked (null), the current supply is permanent. The same logic applies to freeze authority: an active value means the issuer can freeze any holder's account.
02
Two programs, one tool.
Most tokens use the original SPL Token program. Newer or feature-rich tokens may use Token-2022, which adds extensions like transfer fees and interest-bearing balances. Both surface the same basic fields; we read whichever one owns the mint.
03
Cached server-side.
Reads are batched into a single getAccountInfo RPC call, server-side, with a 5-minute cache. Mint state changes rarely, so even popular tokens hit the upstream RPC at most a handful of times per hour regardless of traffic.
/faq
01

Why do SPL tokens not show name and symbol here?

On-chain SPL mints store decimals, supply, and authorities — but not name or symbol. Those live in a separate Metaplex Metadata account. Reading them requires deriving a program-derived address (PDA), which needs ed25519 math beyond this page's scope.

02

What is mint authority?

The address allowed to mint new tokens into circulation. If it's null, the supply is permanently capped — minting is disabled. Stablecoins typically keep mint authority active; capped tokens like fixed-supply NFTs revoke it.

03

What is freeze authority?

The address allowed to freeze any token account holding this mint, blocking transfers. Most user-facing tokens have it null. USDC and USDT keep it active for compliance reasons.

04

What's the difference between SPL Token and Token-2022?

Token-2022 is a newer program with optional extensions (transfer fees, confidential transfers, interest bearing tokens, etc.). It's a superset of SPL Token — most simple tokens still use the original program for compatibility.