Prices

Daily token prices combining CoinGecko data and DEX VWAP calculations across 6 chains.

7 tables — one per chain, plus a DEX-only price table for Tempo.

TableChain
agent.ethereum_prices_dayEthereum
agent.base_prices_dayBase
agent.arbitrum_prices_dayArbitrum
agent.tron_prices_dayTron
agent.hyperevm_prices_dayHyperEVM
agent.tempo_prices_dayTempo (different schema, see below)
agent.tempo_prices_dexTempo (DEX-derived, includes volume + trade count)

Schema

Engine: MergeTree | Partition: toYYYYMM(block_date) | ORDER BY: contract_address, block_date

ColumnTypeDescription
block_dateDateUTC date
blockchainStringChain name
contract_addressStringLowercase hex. Zero address for native token.
decimalsInt64Token decimals
symbolStringToken symbol. May be null for unregistered tokens.
priceFloat64USD price
volume_usdFloat64Trading volume in USD
sourceString'coingecko' or 'dex_vwap'

Tempo Prices Schema

The two Tempo tables use a simpler schema (no blockchain column) and ReplacingMergeTree — query with FINAL. Tempo tokens are USD stablecoins, so prices hover near $1.

ColumnTypeDescription
block_dateDateUTC date
contract_addressStringTIP-20 token contract
symbolStringToken symbol
decimalsUInt8Token decimals
priceFloat64USD price
volume_usdFloat64tempo_prices_dex only — daily DEX volume
trade_countUInt32tempo_prices_dex only — daily DEX trade count
sourceStringPrice source

Good to Know

  • Prefer CoinGecko when both sources exist. DEX VWAP fills gaps for tokens CoinGecko doesn't list.
  • WETH (0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2) is the ETH price proxy on Ethereum.
  • CoinGecko prices are hourly snapshots — no intraday precision.
  • DEX VWAP can be skewed by low-liquidity pools or wash trading.
  • New tokens may have no price for the first few days.