MLDZMNDDU3
    Updated 2023-08-12
    select
    date_trunc('day',HOUR) as day,
    avg(price) as price_usd
    from ethereum.core.fact_hourly_token_prices
    where TOKEN_ADDRESS=lower('0x3845badAde8e6dFF049820680d1F14bD3903a5d0')
    group by 1
    order by 1
    Run a query to Download Data