Delamir-6014Untitled Query
    Updated 2022-12-17
    select
    hour::date as date,
    avg (price) as USD
    from ethereum.core.fact_hourly_token_prices
    where symbol = 'MCADE'
    group by 1
    order by 1

    Run a query to Download Data