strawbettyLuna price over past 30 days
    Updated 2022-05-12

    SELECT
    date_trunc('day', block_timestamp) as dt,
    avg(price_usd) as lunaprice
    from terra.oracle_prices
    where symbol = 'LUNA'
    and block_timestamp >= '2022-04-10'
    and block_timestamp < '2022-05-10'
    group by 1
    Run a query to Download Data