alitaslimiAvalanche | List of BTC.b Top Holders
Updated 2025-03-04Copy 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
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
with
transfers as (
select
to_address as address,
sum(amount) as volume
from
avalanche.core.ez_token_transfers
where
contract_address = '0x152b9d0fdc40c096757f570a51e494bd4b943e50'
group by
address
union all
select
from_address as address,
-sum(amount) as volume
from
avalanche.core.ez_token_transfers
where
contract_address = '0x152b9d0fdc40c096757f570a51e494bd4b943e50'
group by
address
)
select
transfers.address as "Address",
labels.project_name as "Label",
sum(transfers.volume) as "Balance"
from
transfers
left join avalanche.core.dim_labels labels on transfers.address = labels.address
where
transfers.address != '0x0000000000000000000000000000000000000000'
group by
"Address",
"Label"
having
"Balance" > 0
QueryRunArchived: QueryRun has been archived