Address | Tokens Balance | USD Value | Tokens Balance (USD) | Percentage (%) | |
---|---|---|---|---|---|
1 | 0x0ebfebd41e1ea83be5e911cdcd2730a0ccee344d | 9499.2616 B | 7020362.75549677 | 7.02 M | 13.68 |
2 | 0xa8936fee3c966060849d14b6f8e71fb2c73213b3 | 4238.3655 B | 3132334.33487337 | 3.13 M | 6.11 |
3 | 0xf89d7b9c864f589bbf53a82105107622b35eaa40 | 2959.5494 B | 2187234.26698277 | 2.19 M | 4.26 |
4 | 0xd6216fc19db775df9774a6e33526131da7d19a2c | 2806.8158 B | 2074357.54771985 | 2.07 M | 4.04 |
5 | 0xf7cb79d787e0fe2b20e5cf7ed06986712d8008a9 | 2016.3795 B | 1490191.16721261 | 1.49 M | 2.9 |
6 | 0x3d8fc1cffaa110f7a7f9f8bc237b73d54c4abf61 | 1838.1076 B | 1358440.55533602 | 1.36 M | 2.65 |
7 | 0x7aad7840f119f3876ee3569e488c7c4135f695fa | 1579.2007 B | 1167097.22270744 | 1.17 M | 2.27 |
8 | 0x41ab86eecbd110a82ca602d032a461f453066f1e | 1458.5253 B | 1077912.89489446 | 1.08 M | 2.1 |
9 | 0x2933782b5a8d72f2754103d1489614f29bfa4625 | 1400 B | 1034660.2 | 1.03 M | 2.02 |
10 | 0xf35a6bd6e0459a4b53a27862c51a2a7292b383d1 | 1295.0208 B | 957076.0570944 | 957.1 K | 1.87 |
11 | 0x0639556f03714a74a5feeaf5736a4a64ff70d206 | 1253.4357 B | 926342.875060462 | 926.3 K | 1.81 |
12 | 0xffb3118124cdaebd9095fa9a479895042018cac2 | 1232.3991 B | 910795.953420302 | 910.8 K | 1.78 |
13 | 0xc882b111a75c0c657fc507c04fbfcd2cc984f071 | 1154.9885 B | 853586.16020597 | 853.6 K | 1.66 |
14 | 0xa5637ad248ca3bb7a49665f2136ee72315fb39b1 | 1146.874 B | 847589.180686893 | 847.6 K | 1.65 |
15 | 0xf8191d98ae98d2f7abdfb63a9b0b812b93c873aa | 1139.3756 B | 842047.55883529 | 842 K | 1.64 |
16 | 0xaf520658fdddea2e0ec3b2edb6776655fc9e4a47 | 989.8465 B | 731539.109897038 | 731.5 K | 1.43 |
17 | 0xd672918d61285c3e1809d9eed5c5e85471b29360 | 986.0805 B | 728755.873606298 | 728.8 K | 1.42 |
18 | 0xe7d96b5fdab3dcb6ab5cb8b14b291e03a8ac496b | 804.9818 B | 594916.160924485 | 594.9 K | 1.16 |
19 | 0x0d0707963952f2fba59dd06f2b425ace40b492fe | 723.5366 B | 534724.684201622 | 534.7 K | 1.04 |
20 | 0x635ceb94d3e311a665f6ed7b28fec033f2720f74 | 691.6808 B | 511181.841953758 | 511.2 K | 1 |
LordkingHolders List
Updated 2025-05-10
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 dataavalanche AS (
with totalsupplytbl as (
with general as (
with tbl3 as (
with tbl as (
select
to_address as "Address",
sum(RAW_AMOUNT/pow(10,18)) as "Input"
from avalanche.core.ez_token_transfers
where contract_address = lower ('0x420FcA0121DC28039145009570975747295f2329')
group by
1
),
tbl2 as (
select
from_address as "Address",
sum(RAW_AMOUNT/pow(10,18)) as "Output"
from avalanche.core.ez_token_transfers
where contract_address = lower ('0x420FcA0121DC28039145009570975747295f2329')
group by 1
)
select
tbl."Address",
case
when "Input" is null then 0
else "Input"
end as "Input tokens",
case
when "Output" is null then 0
else "Output"
end as "Output tokens"
from tbl left join tbl2 on tbl."Address" = tbl2."Address"
)
select
Last run: about 1 month ago
...
1000
84KB
20s