prices.minute
Overview
Theprices.minute
table provides the most granular price data for tokens across multiple blockchains, with minute-level precision. This is the highest resolution price data available in the Dune platform.
Table Schema
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 | Minute timestamp |
price | double | Token price in USD (volume-weighted average) |
decimals | int | Token decimals |
volume | double | Trading volume in USD (from price source) |
source | varchar | Data source (‘coinpaprika’ or ‘dex.trades’) |
Implementation Details
The minute prices are built using a sparse hour interpolation approach:- Source from hourly data: Uses
prices.hour
as the source instead of raw minute-level data - Linear interpolation: Implements linear interpolation between hourly anchor points to create smooth minute-level data
- Noise reduction: Reduces noise and outliers by using stable hourly data points as anchors
- Forward-filling: The system forward-fills with the last available price for a maximum of 48 hours (2880 minutes) to avoid stale data
- Continuous time series: Provides minute-by-minute data points for every minute between hourly anchors
Usage
This table is ideal for high-frequency analysis and examining short-term price movements. It’s particularly useful for studying price impacts of specific events or transactions with high temporal precision. Note: The minute-level data is interpolated from hourly anchor points, providing smooth and consistent pricing while reducing the impact of noise and outliers that can occur in raw minute-level data.Latency and Update Frequency
Theprices.minute
table is updated hourly based on the upstream data pipeline. As a result, prices typically have a latency of approximately 1 hour from real-time.
Usage Examples
Here are some examples of how to use the prices tables.Get minute-by-minute ETH prices during a specific event:
Analyze price volatility within short time frames:
Data Quality Notes
- Due to its high granularity, queries on this table may be more resource-intensive
- Consider using
prices.hour
orprices.day
for longer time ranges if minute-level precision is not required - Native tokens (like ETH, BNB) are assigned fixed addresses for consistency
- Always use
contract_address
andblockchain
for precise token identification, never usesymbol
for joins or filters - Interpolated Pricing: Minute-level data is interpolated from hourly anchor points, providing smoother and more consistent pricing
- Reduced Noise: The interpolation approach reduces the impact of noise and outliers that can occur in raw minute-level data
- 48-Hour Forward-Fill: The system forward-fills with the last available price for a maximum of 48 hours (2880 minutes) to avoid stale data
- Data Limitations: While the interpolation approach improves data quality, users should always validate prices for critical applications