# Holders | AVG_BALANCE | MEDAIN_BALANCE | MAX_BALANCE | |
---|---|---|---|---|
1 | 4614 | 216731.685955787 | 1847.765308472 | 109281622.0415 |
0xHaM-dWINK Holders and Balance on Avalanche
Updated 2025-02-26
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 eventTb as (
select
to_address as holder,
sum(amount) as amount
from avalanche.core.ez_token_transfers
where contract_address = '0x7698a5311da174a95253ce86c21ca7272b9b05f8'
group by 1
union all
select
from_address as holder,
sum(amount)*-1 as amount
from avalanche.core.ez_token_transfers
where contract_address = '0x7698a5311da174a95253ce86c21ca7272b9b05f8'
group by 1
)
,
bal_tb as (
select
holder,
sum(amount) as Balance
from eventTb
group by 1
)
select
count(distinct holder) as "# Holders",
avg(balance) as avg_Balance,
median(balance) as medain_balance,
max(balance) as max_balance
from bal_tb
where balance > 0
Last run: about 2 months ago
1
55B
3s