Prices
Token price data across multiple blockchains
Prices (Token Price Data)
Dune provides reliable token price data for use in your queries across 40+ blockchains. This implementation is a complete rewrite of the price aggregation system with significant improvements.
Key Features
- Multi-blockchain support: Prices for tokens across 40+ blockchains
- Standardized native token addresses: Native tokens (like ETH, BNB) have fixed contract addresses for consistency
- Multiple time granularities: hourly, daily, and latest price data
- Source transparency: Each price point includes its data source
- Data quality: Comprehensive filters to ensure price reliability
Available Tables
The prices
schema exposes these main tables:
Table | Description |
---|---|
prices.latest | The most recent price for each token |
prices.day | Daily token prices (most recent price of each day) |
prices.hour | Hourly token prices |
prices.minute | Minute-by-minute token prices |
For best performance, use the table with the coarsest granularity that meets your analytical needs. Querying minute-level data over long time periods can be very resource-intensive.
Implementation Details
The price system works in multiple layers:
-
Base data sources:
- External price feeds (Coinpaprika)
- DEX trading data (from
dex.trades
)
-
Data processing pipeline:
- Sparse minute data collected from both sources
- Aggregated to hourly and daily sparse records
- Filled into continuous time series for steady time intervals
-
Token handling:
- Native tokens are assigned fixed addresses instead of NULL or 0xeeee…
- You can find the correct native token address for each blockchain in the
dune.blockchains
table - Trusted tokens (major stablecoins, wrapped assets) serve as price anchors
- Non-trusted tokens derive prices through DEX trades against trusted tokens
- Simply put: We use prices from trusted tokens to calculate prices of other tokens based on the data from DEX trades
Coverage
- 900,000 unique tokens
- 40+ blockchains
- new tokens are automatically added when they exceed a $10k volume threshold
Schema
All price tables share the following schema (with slight variations):
Column | Type | Description |
---|---|---|
blockchain | varchar | Blockchain identifier (e.g., ‘ethereum’, ‘arbitrum’) |
contract_address | varbinary | Token contract address (fixed address for native tokens) |
symbol | varchar | Token symbol (e.g., ‘ETH’, ‘USDC’) |
price | double | USD price |
timestamp | timestamp | Timestamp (start of minute, hour, or day) |
decimals | int | Token decimals |
volume | double | Trading volume in USD (from price source) |
source | varchar | Data source (‘coinpaprika’ or ‘dex.trades’) |
source_timestamp | timestamp | Exact timestamp of the source data point |
Technical Notes
- Prices are calculated independently per blockchain
- Token identification requires both
contract_address
ANDblockchain
symbol
is not unique - do not use for token identification or joins- For native tokens, use the standardized addresses from
dune.blockchains
table - If there are no trades for a token, we use the last available price and carry it forward for a limited time period:
- 30 days for daily prices
- 7 days for hourly prices
- 2 days for minute prices
Methodology
Step 1: Importing Trusted Token Prices
Dune sources trusted token prices from Coin Paprika. These prices:
- Cover major tokens that are defined in the
prices.trusted_tokens
table - Serve as base prices for calculating prices of other tokens traded against them in DEX pairs
Step 2: DEX-Derived Prices
For details on how Dune processes DEX trade data to derive accurate token prices, see the DEX Trade Processing:
- We start by collecting raw trading data from the
dex.trades
table - We calculate prices for trading pairs where one token is from our trusted token list
- The data then goes through our processing pipeline which:
- Excludes trades with less than $10,000 USD in total volume
- Takes the median price from each minute to reduce outlier impact
- Calculates USD prices using our trusted token prices as reference
- Uses forward-filling to handle periods without valid trades, with time limits
- 30 days for daily prices
- 7 days for hourly prices
- 2 days for minute prices
Usage Examples
Here are some examples of how to use the prices tables.
Basic query to get the latest ETH price:
Getting historical price data:
Finding the right native token address:
Legacy Tables
The following tables are maintained for historical compatibility but we no longer add tokens to them:
prices.usd
prices.usd_daily
prices.usd_latest
Was this page helpful?