MetiocreDai vs eth price
    Updated 2022-05-20
    select date_trunc('day', hour) as date,
    avg(price)
    from flipside_prod_db.ethereum_core.fact_hourly_token_prices
    where symbol = 'WETH' --address_name = 'maker'
    and date >= current_date - interval '365 days'
    group by 1

    Run a query to Download Data