Skip to main content
stablecoins.metrics.volume_daily aggregates stablecoin activity by day, chain, and token address. It includes sender_count, recipient_count, and the largest single transfer per day (max_transfer_volume), making it useful for identifying dominant flows without processing raw transfer events. This table replaces crosschain.metrics.stablecoin_volume. Note: the adjusted volume columns (single_direction_*, entity_adjusted_*, transfer_volume_is_anomaly) from the old table are not present in the new schema. Anomalous transactions (exploits, sentinel mints/burns) are excluded upstream in each chain model before aggregation.

Sample Query

Monthly USD stablecoin volume, last 24 months
select
    date_trunc('month', activity_date) as month,
    sum(transfer_tx_count) as num_transactions,
    sum(transfer_volume_usd / pow(10, 9)) as usd_volume_billions
from stablecoins.metrics.volume_daily
where currency = 'usd'
    and activity_date >= current_date - interval '24 months'
    and activity_date < date_trunc('month', current_date)
group by all
order by 1 desc

Table Columns

Unique Key: chain, activity_date, token_address
Column NameData TypeDescription
activity_dateTIMESTAMP_NTZ(9)UTC date of the aggregated activity
chainVARCHARBlockchain name
token_addressVARCHARContract address of the stablecoin
product_idVARCHARAllium stablecoin product identifier (e.g. usdc, usdt)
issuer_idVARCHARAllium issuer identifier (e.g. circle, tether)
token_nameVARCHARName of the stablecoin
token_symbolVARCHARSymbol of the stablecoin
currencyVARCHARISO currency code the stablecoin is pegged to (e.g. usd, eur)
peg_mechanismVARCHARMechanism used to maintain the peg (e.g. fiat-backed, crypto-collateralized)
stablecoin_typeVARCHARBacking model of the stablecoin
is_nativeBOOLEANWhether this is a chain-native issuance (vs. bridged/wrapped)
transfer_tx_countBIGINTNumber of distinct transactions containing at least one stablecoin transfer
transfer_countBIGINTTotal number of stablecoin transfer events
transfer_volumeFLOATSum of stablecoin amounts transferred (token-native units)
transfer_volume_usdFLOATSum of stablecoin amounts transferred in USD
max_transfer_volumeFLOATLargest single transfer amount within the day (token-native units)
max_transfer_volume_usdFLOATLargest single transfer amount within the day in USD
sender_countBIGINTNumber of distinct sender addresses
recipient_countBIGINTNumber of distinct recipient addresses
_created_atTIMESTAMP_NTZ(9)Timestamp when the row was first created
_updated_atTIMESTAMP_NTZ(9)Timestamp when the row was last updated