cypherUST PEG
    Updated 2022-07-07
    select date(date_trunc('day', block_timestamp)) as date,
    avg(price_usd) as price_ust
    from terra.oracle_prices
    where symbol = 'UST'
    group by date
    order by date

    Run a query to Download Data