Tables
There are two ways to query for chain metrics:
- using
crosschain.metrics.overview, which makes it easy to compare metrics across chains (if included) - using
<chain>.metrics.overview, which makes it easy to view relevant metrics for your desired chain
Sample Queries
1) Get historical metrics for all available chainsTable Columns
- General
- Fees
- Token Supply
- Token Transfers
- DEX Activity
- NFT Activity
- Chain-Specific
Notes
- Fee Metrics
- average transfer fee metrics are based on simple transaction types with single, direct transfers between two wallet addresses, e.g.
- for EVM chains, native token transfers where the input is
0xand ERCX token transfers where the transfer functions are called directly by the transacting user - for Solana, we exclude transfers initiated via program and instead limit to transactions with only 1 transfer initiated by the address sending the token (i.e.
signer = from_address)
- for EVM chains, native token transfers where the input is
average_transaction_feesandaverage_transaction_fees_usdexclude system transactions or other 0 fee transactions, as they would skew metrics downwards
- average transfer fee metrics are based on simple transaction types with single, direct transfers between two wallet addresses, e.g.
- Token Transfer Metrics
user_initiatedMetrics exclude transactions initiated by contracts- For EVM,
native_token_transfer_countaccounts for all native token transfers, including gas/fee payments, butnative_token_value_transfer_countexcludes those, limiting it to transfers between EOAs/contracts. Similarly, on Solana,native_token_value_transfer_countexcludes SOL transfers for rent which is needed for the creation or closure of token accounts - Currently, there are only volume metrics for
usdstablecoins, as we don’t currently have prices/exchange rate conversions for non-USD currencies
- Solana Nuances
- The SPL token standard can be flexibly used for both fungible and non-fungible tokens (NFTs). We identify NFTs by their
mintaddress.
- The SPL token standard can be flexibly used for both fungible and non-fungible tokens (NFTs). We identify NFTs by their
- Other
USDmetrics (e.g.erc20_transfer_volume_usd,dex_volume_usd,nft_volume_usd) are subject to changes as our token/DEX/NFT coverage & price data become more complete or are updated
How It Works:
We regularly process vast amounts of blockchain data, computing essential metrics like daily active addresses, transaction volumes, and gas usage. These metrics are stored in easily accessible tables, allowing you to retrieve them with a single query line.Use Cases:
- Generate time-series data for visualizations without the need to write custom code.
- Effortlessly compare metrics across different periods and blockchains.
- Easily integrate blockchain metrics into your applications or dashboards.