STATUS | N_WALLETS | CLAIMED_AMT | |
---|---|---|---|
1 | Paper Hands | 20166 | 747348.840379 |
2 | Dimond Hands | 6025 | 119938.873521 |
3 | Partial Transferred or Sold | 4248 | 176559.964779 |
4 | Accumulating | 3327 | 126070.620618 |
0xHaM-dUser Behavior After Claim
Updated 2025-03-26
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 claimEvent as (
SELECT
BLOCK_TIMESTAMP,
TX_HASH,
EVENT_DATA:user::string as user,
EVENT_DATA:claimed_amount::int/1e8 as claimed_amount
FROM aptos.core.fact_events
WHERE PAYLOAD_FUNCTION = '0x53a30a6e5936c0a4c5140daed34de39d17ca7fcae08f947c02e979cef98a3719::claim::claim'
AND SUCCESS = TRUE
AND TX_TYPE = 'user_transaction'
AND EVENT_MODULE = 'claim'
AND EVENT_RESOURCE = 'Claimed'
),
transfer_swap as (
SELECT
ACCOUNT_ADDRESS as user,
AMOUNT/1e8 as amount
FROM aptos.core.fact_transfers
WHERE TOKEN_ADDRESS = '0x53a30a6e5936c0a4c5140daed34de39d17ca7fcae08f947c02e979cef98a3719::coin::LSD'
AND SUCCESS = TRUE
AND TRANSFER_EVENT = 'DepositEvent'
UNION ALL
SELECT
ACCOUNT_ADDRESS as user,
-1*AMOUNT/1e8 as amount
FROM aptos.core.fact_transfers
WHERE TOKEN_ADDRESS = '0x53a30a6e5936c0a4c5140daed34de39d17ca7fcae08f947c02e979cef98a3719::coin::LSD'
AND SUCCESS = TRUE
AND TRANSFER_EVENT = 'WithdrawEvent'
UNION ALL
SELECT
SWAPPER as user,
AMOUNT_OUT as amount
FROM aptos.defi.ez_dex_swaps
WHERE TOKEN_OUT = '0x53a30a6e5936c0a4c5140daed34de39d17ca7fcae08f947c02e979cef98a3719::coin::LSD'
UNION ALL
Last run: 23 days ago
4
160B
35s