boomer77top dai
Updated 2022-04-05
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
select user_address, concat(label, '-', address_name) as account, case
when account is null then 'unknown'
else account end as owner,
label_type,
case when label_type is null then 'individual'
else label_type end as labels,
balance
from ethereum.erc20_balances
where symbol = 'DAI' and balance_date = CURRENT_DATE - 1 and price is not null
order by balance desc
limit 20
Run a query to Download Data