Updated 2025-03-23
    with claims as (
    select
    -- *
    block_timestamp, tx_hash, to_address as user_address, amount,
    from base.core.ez_token_transfers
    where from_address = '0xeb7d383b0c77ea0bed28b42d0c288f9071bd8a7a'
    and contract_address = '0x98d0baa52b2d063e780de12f615f963fe8537553'
    and origin_function_signature = '0x69659658'
    -- and tx_hash = '0x86a6bacdce3799c129a3b596a506bb6aa73b1d885e80179f46624fe8fdbda201'
    ),

    stakes as (
    select
    block_timestamp, tx_hash, origin_from_address as user_address, amount, 'stake' as label
    from base.core.ez_token_transfers
    where origin_function_signature = '0x6e553f65'
    and contract_address = '0x98d0baa52b2d063e780de12f615f963fe8537553'
    and origin_to_address = '0x548d3b444da39686d1a6f1544781d154e7cd1ef7'
    -- and from_address = '0x0000000000000000000000000000000000000000'
    -- and tx_hash = '0xbbb7bd642c374163d57fb3edc9d776d3144c47db1456b7ca441abccc5061ccb4'

    union all

    select
    block_timestamp,tx_hash, origin_from_address as user_address, -amount as amount, 'unstake' as label
    from base.core.ez_token_transfers
    where origin_function_signature = '0x9343d9e1'
    and from_address = '0x548d3b444da39686d1a6f1544781d154e7cd1ef7'
    and contract_address = '0x98d0baa52b2d063e780de12f615f963fe8537553'
    order by 1 asc
    ),
    final as (
    select
    c.user_address,
    SUM(c.amount) as claim_amount,
    SUM(s.amount) as stake_amount
    Last run: 12 days ago
    CATEGORY
    USER_ADDRESS
    STAKE_AMOUNTS
    1
    Silver11363301354.86648718
    2
    Gold49137445013.293241
    3
    Uncategorized18378172626.75650736
    4
    Blue2783774184.0685743
    4
    132B
    8s