LTirrellterra_oracle_prices
    Updated 2022-01-17
    select
    trunc(block_timestamp, 'day') as date,
    avg(price_usd) as price_usd,
    currency
    from
    terra.oracle_prices
    where
    block_timestamp >= '2021-06-30'
    and currency like 'u%'
    group by
    date,
    currency

    Run a query to Download Data