Skip to main content
The solana.raw.spl_token_total_supply table contains snapshots of SPL token total supply as returned from the Solana RPC. These snapshots are triggered approximately when a mint or burn event is detected on the blockchain.
Since the RPC does not allow specifying a slot number when querying token supply, the snapshot block will occur after but close to the actual mint/burn event that triggered the snapshot.

Snapshot Triggers

Snapshots are created when:
  • Mint Events: New tokens are minted to increase the total supply
  • Burn Events: Existing tokens are burned to decrease the total supply
The system monitors the blockchain for these events and captures the token’s total supply state shortly after they occur.

Table Columns

Column NameDescriptionTypeExample
mintThe mint address of the SPL tokenvarcharEPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
symbolThe ticker symbol of the tokenvarcharUSDC
token_nameThe full name of the tokenvarcharUSD Coin
decimalsNumber of decimal places the token usesnumber6
raw_amount_strTotal supply as a string in raw units (before decimal adjustment)varchar1000000000000
raw_amountTotal supply as a float in raw units (before decimal adjustment)float1000000000000.0
amount_strTotal supply as a string in human-readable units (after decimal adjustment)varchar1000000.0
amountTotal supply as a float in human-readable units (after decimal adjustment)float1000000.0
snapshot_block_slotThe slot number of the block where the snapshot was takennumber276304227
snapshot_block_timestampThe timestamp of the block where the snapshot was takentimestamp_ntz2024-07-08 02:16:54.000
snapshot_block_heightThe height of the block where the snapshot was takennumber255661589
snapshot_block_hashThe hash of the block where the snapshot was takenvarchar36KR3aiVEZYSJDb8wgWBWpXbYykuz3BJagFRMhFijKxA
_updated_atTimestamp when the record was last updatedtimestamp_ntz2024-07-08 02:16:54.000
_created_atTimestamp when the record was createdtimestamp_ntz2024-07-08 02:16:54.000
I