Historical daily price data for tokens across all supported blockchains, aggregated at 00:00 UTC
The prices.day
table provides daily token price data across all supported blockchains. It contains the last known price for each day, ensuring a continuous time series for price analysis.
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’) |
timestamp | timestamp | Date timestamp (00:00 UTC of each day) |
price | double | Token price in USD |
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 |
The daily prices are built through these steps:
This table is ideal for analyzing daily price trends and performing day-over-day comparisons. It provides a good balance between data granularity and query performance for longer-term analyses.
The prices.day
table is updated daily at 00:00 UTC, providing the closing price for the previous day. Data is typically available within 30 minutes of the daily close.
dune.blockchains
table to get the standardized address for each blockchaincontract_address
and blockchain
for precise token identification, never use symbol
for joins or filtersHistorical daily price data for tokens across all supported blockchains, aggregated at 00:00 UTC
The prices.day
table provides daily token price data across all supported blockchains. It contains the last known price for each day, ensuring a continuous time series for price analysis.
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’) |
timestamp | timestamp | Date timestamp (00:00 UTC of each day) |
price | double | Token price in USD |
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 |
The daily prices are built through these steps:
This table is ideal for analyzing daily price trends and performing day-over-day comparisons. It provides a good balance between data granularity and query performance for longer-term analyses.
The prices.day
table is updated daily at 00:00 UTC, providing the closing price for the previous day. Data is typically available within 30 minutes of the daily close.
dune.blockchains
table to get the standardized address for each blockchaincontract_address
and blockchain
for precise token identification, never use symbol
for joins or filters