stablecoins_solana.activity_enriched table classifies each stablecoin transfer on Solana into an activity category.
Why these enriched tables matter
Stablecoin analysis comes down to two fundamental questions:- Where are stablecoins right now? (balances)
- How did they get there? (activity)
What this dataset is designed to do
- Explain how stablecoin balances move through the ecosystem.
- Attribute transfer activity with transparent, reproducible logic.
- Provide a defensible foundation for flow analysis.
Table schema
Value possibilities
Thecategory and activity columns are intentionally standardized so downstream models, dashboards, and monitoring can rely on deterministic value vocabularies.
This mapping enables consistent flow segmentation, KPI rollups, and alerting logic without custom per-dashboard label handling.
As protocol coverage expands, new values may be added in backward-compatible fashion.
Methodology
Classification is done at the transfer level, not the transaction level.- Start from curated stablecoin transfer rows in
stablecoins_solana.transfers. - Evaluate each transfer against category-specific detection logic using Solana-native context (transaction signature, instruction indexes, token mint, transfer amount, and known program/address labels).
- Apply deterministic priority rules when multiple category matches exist for a transfer.
- Keep full transfer coverage by assigning unmatched rows to
unidentified(orunidentified_bot_activityfor high-volume automated program patterns).
Important interpretation details
- The same transaction can produce different categories across its individual transfers.
- Instruction index context is important on Solana for distinguishing activity legs inside one transaction.
project_address,project_name, andproject_versionare populated only when a confident protocol/entity match exists.
Sample query
Notes
- One transfer maps to one output row (highest-priority match wins).
- For performance, filter by
blockchainandblock_month.