crosschain.metrics.stablecoin_volume table aggregates stablecoin activity from crosschain.stablecoin.transfers by day, chain and token address.
It includes adjusted activity metrics using the following methodologies:
- Single Direction Max Transfer - only the largest stablecoin amount transferred within a single transaction is counted
- Single Direction Net Transfer - the largest net stablecoin amount transferred per token, to a single address, for each transaction, is counted
- Entity Adjusted, Single Direction Max Transfer - in addition, to applying the Single Direction Max Transfer logic, this methodology also uses labels & heuristics to remove bot related activity (e.g. if an address does more than 1,000 transactions and $10m in transfer volume in a rolling 30-day window), or intra-exchange volume (i.e. when transfers are made between two CEX/DEX addresses)
Sample Query
Get the monthly stablecoin transfer metrics for all USD currencies in the last 24 months, excluding anomalies and using the Entity Adjusted, Single Direction Max Transfer methodology
https://app.allium.so/s/bIrQUiFP
Table Columns
Unique Key:chain, activity_date, token_address
- Raw Metrics
- Adjusted Metrics
| Column Name | Description |
|---|---|
| chain | The name of the blockchain |
| token_address | The address of the stablecoin |
| token_symbol | The token symbol of the stablecoin |
| currency | The ISO currency code (e.g. usd, eur, jpy, xau (gold)) of the stablecoin in lowercasing |
| base_asset | The base assets in symbol in lowercasing. (i.e. usdt, usdc, tusd, dai, etc) |
| activity_date | The date for which metrics are being calculated. Only includes completed days. |
| transfer_tx_count | The total number of transactions with stablecoin transfers. |
| transfer_count | The total number of stablecoin transfers. |
| avg_transfer_count | The average number of stablecoin transfers |
| transfer_volume | The total volume of stablecoin transfers (normalized) |
| transfer_volume_usd | The total volume of stablecoin transfers in USD terms |
| avg_transfer_volume | The average volume of stablecoin transfers (normalized) |
| avg_transfer_volume_usd | The average volume of stablecoin transfers in USD terms |
| transfer_volume_is_anomaly | A boolean flag that’s set to true where the transfer_volume is excessively high for a given day, i.e. >1e18 |