Holder | Balance | Percentage | |
---|---|---|---|
1 | 0x2019fe73c426e74fed2a140d7e5b577117a6dc1a | 2500000000 | 25% |
2 | 0x4b9c95fdd52f170bb38cd7ca959524f1b46a2bef | 2500000000 | 25% |
3 | 0x7815ba83da2e47b3d4386586216e2b1d57c36a6d | 1752514433.0013 | 17.5251% |
4 | 0x3b3472e3db5b3a2026ac33cac12ace8eb229a1fa | 888888889 | 8.8889% |
5 | 0x09341022ea237a4db1644de7ccf8fa0e489d85b7 | 454541442.571997 | 4.5454% |
6 | 0x9ae383c2bc1c4b21a774237dd16b57cc67df875e | 259954296.957455 | 2.5995% |
7 | 0xfe53bca0df7ebe8e43cd1b976275ccce7c4a5eda | 195695479.379529 | 1.957% |
8 | 0xf89d7b9c864f589bbf53a82105107622b35eaa40 | 185763387.741602 | 1.8576% |
9 | 0x342f0d375ba986a65204750a4aece3b39f739d75 | 177492080.5895 | 1.7749% |
10 | 0xf2f7cb179a0f36fdf74678f4792ec97e8747df06 | 123653518.600526 | 1.2365% |
11 | 0xbc4499e1c9a28b0ac6fc38d6245ddd8a8de07efe | 89377374.3436367 | 0.8938% |
12 | 0x0d0707963952f2fba59dd06f2b425ace40b492fe | 77648445.6403241 | 0.7765% |
13 | 0xdf41f021e6d55fd178972a09b4ec8bc9a6552c0a | 51132372.8567892 | 0.5113% |
14 | 0x01236628dbe69bafb7fc2b2ee57a1db1c2ea2e9d | 45605394.8336312 | 0.4561% |
15 | 0xf1b32511d6acddc7049ec28bceae3da7eb338be8 | 45605394.8336312 | 0.4561% |
16 | 0xe2c63cb2c2f079156748497687a9c50c398da3ce | 45605394.8336312 | 0.4561% |
17 | 0x374475e2afbaa08673508f28a62a32b995db1241 | 43874052.6731404 | 0.4387% |
18 | 0xa9d1e08c7793af67e9d92fe308d5697fb81d3e43 | 38569703.3242934 | 0.3857% |
19 | 0x22014d7a20f1beeb43c117407e6fb72b4c4ddd1f | 35375464.8185731 | 0.3538% |
20 | 0x48e598c3041af3b47e6d40fda6afa2988d103c38 | 34125996.2768948 | 0.3413% |
Eman-RazTop 100 SWELL Holders on Ethereum
Updated 2025-04-05
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 holders_table as (with tab2 as (
with tab1 as (select from_address as address, - amount as amount
from ethereum.core.ez_token_transfers
where contract_address = lower('0x0a6e7ba5042b38349e437ec6db6214aec7b35676')
union all
select to_address as address, amount as amount
from ethereum.core.ez_token_transfers
where contract_address = lower('0x0a6e7ba5042b38349e437ec6db6214aec7b35676'))
select address, sum(amount) as net_amount
from tab1
group by 1)
select address as "Holder", net_amount as "Balance"
from tab2
where net_amount>0),
supply_table as (with tab2 as (
with tab1 as (select from_address as address, - amount as amount
from ethereum.core.ez_token_transfers
where contract_address = lower('0x0a6e7ba5042b38349e437ec6db6214aec7b35676')
union all
select to_address as address, amount as amount
from ethereum.core.ez_token_transfers
where contract_address = lower('0x0a6e7ba5042b38349e437ec6db6214aec7b35676'))
select address, sum(amount) as net_amount
from tab1
group by 1)
select sum(net_amount) as "Supply"
from tab2
Last run: 20 days ago
100
7KB
7s