0xHaM-dUser Behavior After Claim
    Updated 2025-03-26
    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
    STATUS
    N_WALLETS
    CLAIMED_AMT
    1
    Paper Hands20166747348.840379
    2
    Dimond Hands6025119938.873521
    3
    Partial Transferred or Sold4248176559.964779
    4
    Accumulating3327126070.620618
    4
    160B
    35s