zakkisyedxrune price
    Updated 2021-12-11
    select avg(price), date_trunc('day', hour) as day
    from ethereum.token_prices_hourly
    where symbol = 'XRUNE'
    -- or symbol = 'THOR'
    and hour > CURRENT_DATE - 40
    group by DAY
    order by day ASC
    -- token_address = '0x69fa0fee221ad11012bab0fdb45d444d3d2ce71c'
    --or token_address = '0xa5f2211B9b8170F694421f2046281775E8468044'

    Run a query to Download Data