Solana support is in public beta. Coverage focuses on SPL Token and Token-2022 at launch (plus native SOL transfers in
solana.transfers). About 3 months of history is retained, and the schema may evolve during beta.What’s covered
Well-known program IDs:
Access
SQL Playground
Try queries in your browser (no API keys needed)
REST API
Programmatic access
Example queries
Recent transfers for a mint
Replace{mint} with the token mint you are tracking (for example, USDC: EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v):
Transfer volume for a mint
Daily transfer volume in base units for a mint over the last 7 days:Recent wallet transfer history
Query by owner wallet—not token account—usingsource_owner / destination_owner. Always bound block_time (owners are not the leading index):
Instruction activity for a program
Recent decoded instructions for SPL Token or Token-2022:Reconstruct transfers with instruction context
Join transfers back to the source instruction viainstruction_id:
Query tips
- Filter on indexed columns — for transfers, lead with
mintandblock_time; for instructions, lead withexecuting_account,instruction_name, andblock_time. - Query wallets via owners — SPL transfers expose token accounts in
source/destination. Usesource_owner/destination_owner(oraccount_ownerson instructions) to filter by holder wallet. - Use the
solana.*prefix — Solana tables use this prefix - Scope to active rows — filter
action = 1(or'added') the same way you would on Base; small re-orgs are possible at the tip. Preferinstruction_idas the stable id across reprocessing. - Scope time ranges — about 3 months of history is retained; always bound
block_timefor faster queries.
Scope and limitations
- Programs: Instruction decoding focuses on SPL Token and Token-2022.
solana.transfersalso includes native SOL transfers from the System program. - Not a full instruction set: Arbitrary program coverage is not available yet.
- History: Approximately 3 months of historical data available as of 12-Aug-2026 launch.
- Beta: Schema and coverage may change during public beta.
Learn more
- Schema reference — full
solana.instructionsandsolana.transferscolumn definitions - Quickstart — run your first SQL API query
- Best practices — indexing and query patterns
- FAQ — networks, limits, and re-org handling