TOTAL_USER | Crazy Jeet % | Crazy Jeet | Profit takers % | Profit takers | Partial jeets % | Partial jeets | Dimond hands % | Dimond hands | |
---|---|---|---|---|---|---|---|---|---|
1 | 285 | 15.789474 | 45 | 6.315789 | 18 | 2.105263 | 6 | 75.789474 | 216 |
freemartianTotal Initial AISTR Activities
Updated 2025-03-05
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 first_dist AS(
SELECT block_timestamp, tx_hash, to_address AS user, amount AS first_amount_received,
FROM base.core.ez_token_transfers
WHERE contract_address = '0x20ef84969f6d81ff74ae4591c331858b20ad82cd'
AND tx_hash = '0xcf585407c610647a46e7d8900b91db33df2d6276697f5bbf12e5be5d97796605'
ORDER BY event_index ASC
),
token_in_out AS(
SELECT
to_address AS user,
SUM(amount) AS amount,
FROM base.core.ez_token_transfers
WHERE contract_address = '0x20ef84969f6d81ff74ae4591c331858b20ad82cd'
GROUP BY 1
UNION ALL
SELECT
from_address AS user,
SUM(-amount) AS amount,
FROM base.core.ez_token_transfers
WHERE contract_address = '0x20ef84969f6d81ff74ae4591c331858b20ad82cd'
GROUP BY 1
),
current_user_amount AS(
SELECT
user,
sum(amount) AS current_balance
FROM token_in_out
GROUP BY 1
),
stake AS(
-- stake
SELECT
block_timestamp, tx_hash, decoded_log:from AS user, decoded_log:value/pow(10,18) AS amount, 'Stake' AS label
FROM base.core.ez_decoded_event_logs
Last run: 29 days agoAuto-refreshes every 1 hour
1
57B
1119s