LTirrellacme_price_info_luna
    Updated 2022-07-07
    select
    date_trunc('hour', BLOCK_TIMESTAMP) as datetime,
    avg(price_usd) as ust_price,
    avg(luna_exchange_rate) as luna_price
    from terra.oracle_prices
    where currency='uusd'
    and datetime >= '2020-10-01'
    group by datetime
    order by datetime
    Run a query to Download Data