boomer77Untitled Query
    Updated 2021-12-22
    select address, sum(balance)
    from terra.daily_balances
    where currency in ('UST')
    and date = CURRENT_DATE - 1
    group by 1
    order by 2 desc
    limit 50
    Run a query to Download Data