0xHaM-d$ETH price Over Time
    Updated 2022-09-06
    SELECT
    date_trunc('{{interval}}', hour) as date,
    avg(price) as eth_price
    FROM ethereum.core.fact_hourly_token_prices
    WHERE symbol = 'WETH'
    And date >= '{{since_date}}'
    group by 1




    Run a query to Download Data