zakkisyed$Rune price
    Updated 2022-01-27
    select
    date_trunc('day', block_timestamp) as dayz, avg(rune_usd) as rune_price
    from thorchain.prices

    where block_timestamp >= '2021-09-13'

    group by 1
    order by 1 desc
    Run a query to Download Data