WALLET | BALANCE | |
---|---|---|
1 | 0xebf418fe2512e7e6bd9b87a8f0f294acdc67e6b4 | 728235177.22199 |
2 | 0x6cdcb1c4a4d1c3c6d054b27ac5b77e89eafb971d | 40565202.4381104 |
3 | 0x7269de76188e6597444d0859c4e5c336d3c39ddb | 34267582 |
4 | 0x807877258b55bfefabdd469da1c72731c5070839 | 23647546.6310332 |
5 | 0x4c984a8c7d2076d9c5411e5aff50b9b4e2fe0321 | 17997667.3988185 |
6 | 0x73902f619ceb9b31fd8efecf435cbdf89e369ba6 | 17894285.5696373 |
7 | 0x2a60849505293e936130eaa3c64b54aece43a91e | 17135824.1455626 |
8 | 0x92dbacabc6ad2637ef27ac7c121d6524a569eca9 | 14080095.3195419 |
9 | 0xbcfa30af898f2d4e3abb088fb945c2d7f313f488 | 13483862.708963 |
10 | 0x082bdc61fe48ae3c35700e345576c03f62ff4483 | 12850876.7371162 |
11 | 0x27cc00d1b9980c0bf5bedb4e5515d2aff751769c | 12759445.2149874 |
12 | 0xc64b8ddaebf1de3877b1b36c2ff72774994b3933 | 12528901.1769909 |
13 | 0xbde0c70bdc242577c52dfad53389f82fd149ea5a | 12519275.3021617 |
14 | 0x3c7708e6c92974e12fec289b434ec44313405978 | 12050280.3377611 |
15 | 0xc211d1f9761e0329fb8b2a8580e66318122f23ee | 11832566.9921772 |
16 | 0xb9537671ae3d543282c0094ee1087a15b2ef49a3 | 11342044.9444466 |
17 | 0x900c27a7d1e2f6c0af86dbfb7990518037f7359d | 11230397.3409912 |
18 | 0x62532569ec38790ed296f8252bdfd30c725b3083 | 10656289.9331866 |
19 | 0x5e6fbb2f316d56c13ded0ab1b32138f7886ec191 | 10372009.2192786 |
20 | 0x6b0c47eb2ee5a0cf85756353b6b4dbd114cb0d41 | 10271474.4596695 |
jackguyWallets by AREO Balance
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
›
⌄
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')
GROUP BY 1,2
)
GROUP BY 1
HAVING balance > 0
ORDER BY 2 DESC
Last run: 3 months agoAuto-refreshes every 3 hours
...
100000
6MB
185s