maybeyonascel_bal_today
Updated 2022-07-12Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
›
⌄
with
wallets as (
select
*
from crosschain.address_labels
where address_name = 'celsius wallet'
)
-- select * from wallets
-- limit 100
select *
from ethereum.erc20_balances
where amount_usd is not null
and user_address in (
select address from wallets
)
and balance_date in (
select balance_date from ethereum.erc20_balances
order by balance_date desc
limit 1
)
limit 1000
Run a query to Download Data