fat3mehLuna Price Before and After Nov Burnt
    Updated 2022-04-25
    select
    date_trunc('day', block_timestamp) as day,
    avg(price_usd) as "Luna Price"
    from terra.oracle_prices
    where symbol = 'LUNA'
    and block_timestamp >= '2021-10-01' and block_timestamp < '2022-01-01'
    group by day

    Run a query to Download Data