tomwanhhUST holdings
Updated 2022-05-11
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
select
date,
currency,
b.address,
l.address_name,
sum(balance_usd) as USD_in_wallets
from terra.daily_balances b
inner join terra.labels l
on b.address = l.address
where currency = 'UST'
and date = current_date()
group by 1, 2, 3, 4
order by 1 desc, 5 desc;
Run a query to Download Data