0xaimanUntitled Query
    Updated 2022-06-19
    select date(hour) as dt, avg(price) as BTC_price
    from ethereum.core.fact_hourly_token_prices

    where symbol='WBTC' and hour>='2022-01-01'

    group by 1 order by 1

    limit 1000000
    Run a query to Download Data