zakkisyedUST Supply 1
    Updated 2021-12-06
    select
    date_trunc('day',DATE),
    sum(balance) as ust_supply
    from terra.daily_balances
    where currency = 'UST'
    and date > CURRENT_DATE - 90
    group by 1
    order by 1 DESC


    Run a query to Download Data