Blockchain | Holders | Circulating Supply | Average Balance | Median Balance | |
---|---|---|---|---|---|
1 | Arbitrum | 62328 | 13.49547511 | 0.0002165234744 | 0.00000101 |
2 | Avalanche | 231547 | 5022.78659046 | 0.02169229828 | 6.7e-7 |
3 | BSC | 97178 | 2.78399235 | 0.00002864838081 | 0.00000286 |
4 | Optimism | 37057 | 1.4482404 | 0.00003908142591 | 0.00000235 |
5 | Polygon | 175995 | 4.73376994 | 0.00002689718424 | 0.0000014 |
alitaslimiHolders Blockchains
Updated 2025-02-19
999
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
-------------------- Arbitrum --------------------
arbitrum_transfers as (
select
to_address as address,
sum(amount) as volume
from
arbitrum.core.ez_token_transfers
where
contract_address = '0x2297aebd383787a160dd0d9f71508148769342e3'
group by
address
union all
select
from_address as address,
-sum(amount) as volume
from
arbitrum.core.ez_token_transfers
where
contract_address = '0x2297aebd383787a160dd0d9f71508148769342e3'
group by
address
),
arbitrum as (
select
address,
sum(volume) as balance
from
arbitrum_transfers
where
address != '0x0000000000000000000000000000000000000000'
group by
address
having
balance > 0
),
Last run: 24 days ago
5
282B
86s