freemartianMinutely claim
    Updated 5 days ago
    with datas 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'
    )

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



    Last run: 5 days agoAuto-refreshes every 1 hour
    HOUR
    TRANSACTIONS
    USERS
    AMOUNTS
    CUM_USERS
    CUM_AMOUNTS
    1
    2025-02-20 12:00:00.000230692242818598830.33005992242818598830.3300599
    2
    2025-02-20 13:00:00.00014770145214137903.619933633694922736733.9499935
    3
    2025-02-20 14:00:00.000755774641337100.847654354441324073834.7976479
    4
    2025-02-20 15:00:00.000482947481152317.419496234916125226152.2171441
    5
    2025-02-20 16:00:00.00031233091818330.394946945225226044482.612091
    6
    2025-02-20 17:00:00.00025652528529043.9160126445478026573526.5281037
    7
    2025-02-20 18:00:00.00021582135419175.9892071835691526992702.5173109
    8
    2025-02-20 19:00:00.00016901636231101.9841528165855127223804.5014637
    9
    2025-02-20 20:00:00.00014241351316051.1206293035990227539855.622093
    10
    2025-02-20 21:00:00.00018371811210541.2577637576171327750396.8798568
    11
    2025-02-20 22:00:00.00017261709160368.3831309926342227910765.2629877
    12
    2025-02-20 23:00:00.00012961281203636.8286921466470328114402.0916799
    13
    2025-02-21 00:00:00.00011611153103126.8823949386585628217528.9740748
    14
    2025-02-21 01:00:00.000981966139154.4906734426682228356683.4647483
    15
    2025-02-21 02:00:00.0001009998137300.8705575916782028493984.3353059
    16
    2025-02-21 03:00:00.000852843126013.823416546866328619998.1587224
    17
    2025-02-21 04:00:00.00073673078218.5052855946939328698216.664008
    18
    2025-02-21 05:00:00.00071270947940.6310411787010228746157.2950492
    19
    2025-02-21 06:00:00.000864857118645.9927128567095928864803.287762
    20
    2025-02-21 07:00:00.000900896265807.2454245227185529130610.5331865
    ...
    696
    48KB
    17s