freemartiancumulative stake
    Updated 24 minutes ago

    WITH datas 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
    )

    select
    date_trunc('hour',block_timestamp) as hour,
    -- label,
    count(tx_hash) as transactions,
    count(distinct user_address) as users,
    sum(amount) as amounts,
    SUM(amounts) over(order by hour asc) as cum_amount
    from datas
    group by 1




    Last run: 24 minutes agoAuto-refreshes every 1 hour
    HOUR
    TRANSACTIONS
    USERS
    AMOUNTS
    CUM_AMOUNT
    1
    2025-03-02 19:00:00.0002423-1607.9215826549873694.54018633
    2
    2025-03-05 10:00:00.0003534-2760.9265857289978311.90180984
    3
    2025-03-18 13:00:00.0002020211.48145295211047391.7936921
    4
    2025-03-02 14:00:00.00040371481.6552856399967495.50520075
    5
    2025-03-03 23:00:00.00011108977.6145631589900100.47575919
    6
    2025-03-04 05:00:00.0001212-64.2758821359846716.05027497
    7
    2025-03-17 12:00:00.0003636436.4526611710939040.6721766
    8
    2025-03-18 16:00:00.0005351520308.67208471811579008.0274384
    9
    2025-03-21 12:00:00.00021206982.08599011512769020.9892918
    10
    2025-03-05 14:00:00.00019191715.5226974139980856.29561439
    11
    2025-04-16 23:00:00.0004438.33203578214521558.9024731
    12
    2025-03-18 09:00:00.0001919-142.19222949111045513.0076174
    13
    2025-03-19 23:00:00.000121222.70255592311617252.7815601
    14
    2025-03-27 13:00:00.00044-158.18567232913908963.3173074
    15
    2025-03-27 18:00:00.00033405.29068213813925587.0094696
    16
    2025-03-05 16:00:00.00014142573.6339399179985229.78240842
    17
    2025-03-08 12:00:00.00010101367.6862364369854407.77189569
    18
    2025-02-25 16:00:00.000323220403.5639543017497118.16667321
    19
    2025-02-27 05:00:00.00050482550.4447614098560229.79179961
    20
    2025-02-21 19:00:00.00051502249.0862628914754140.55621975
    ...
    1548
    97KB
    26s