Label | Holders | Balance | |
---|---|---|---|
1 | Other | 176000 | 4.72318278 |
2 | DEX | 12 | 0.00561508 |
3 | CEX | 247 | 0.00474724 |
4 | DeFi | 2 | 0.00020484 |
5 | DApp | 1 | 0.00002 |
alitaslimiPolygon Holders Types
Updated 2025-02-19
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
polygon.core.ez_token_transfers
where
contract_address = '0x2297aebd383787a160dd0d9f71508148769342e3'
group by
address
union all
select
from_address as address,
-sum(amount) as volume
from
polygon.core.ez_token_transfers
where
contract_address = '0x2297aebd383787a160dd0d9f71508148769342e3'
group by
address
),
holders as (
select
address,
sum(volume) as balance
from
transfers
where
address != '0x0000000000000000000000000000000000000000'
group by
address
having
balance > 0
)
select
Last run: about 2 months ago
5
115B
38s