HOLDER_GROUP | HOLDERS | TOKEN_SUPPLY | |
---|---|---|---|
1 | d 10K - 100K AREO | 2432 | 60709503.9619852 |
2 | a Below 100 AREO | 258323 | 1084183.46486944 |
3 | f 1M - 10M AREO | 84 | 272132360.884271 |
4 | b 100 - 1K AREO | 23709 | 8804076.34548802 |
5 | g 10M - 100M AREO | 20 | 317547879.831299 |
6 | h 100M+ AREO | 1 | 728235177.22199 |
7 | c 1K - 10K AREO | 12288 | 36993437.318891 |
8 | e 100K - 1M AREO | 271 | 67471300.9381655 |
jackguyWallets by AREO Balance copy
Updated 2025-02-10
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
›
⌄
-- forked from Wallets by AREO Balance @ https://flipsidecrypto.xyz/edit/queries/748cebd1-f065-4dfd-9a84-7b3bd021bc5e
SELECT
CASE when balance < 100 then 'a Below 100 AREO'
when balance < 1000 then 'b 100 - 1K AREO'
when balance < 10000 then 'c 1K - 10K AREO'
when balance < 100000 then 'd 10K - 100K AREO'
when balance < 1000000 then 'e 100K - 1M AREO'
when balance < 10000000 then 'f 1M - 10M AREO'
when balance < 100000000 then 'g 10M - 100M AREO'
else 'h 100M+ AREO'end as holder_group,
count(*) as holders,
sum(balance) as token_supply
FROM (
SELECT
user as wallet,
sum(CASE when tx_type LIKE 'in' then amt else -1 * amt end) as balance
FROM (
SELECT
FROM_address as user,
'out' as tx_type,
sum(raw_amount / power(10, 18)) as amt
FROM base.core.fact_token_transfers
WHERE contract_address LIKE lower('0x940181a94A35A4569E4529A3CDfB74e38FD98631')
GROUP BY 1,2
UNION
SELECT
to_address as user,
'in' as tx_type,
sum(raw_amount / power(10, 18)) as amt
FROM base.core.fact_token_transfers
WHERE contract_address LIKE lower('0x940181a94A35A4569E4529A3CDfB74e38FD98631')
Last run: 3 months agoAuto-refreshes every 3 hours
8
334B
147s