winnie-fsOvertime copy
    Updated 7 days ago
    -- forked from Afonso_Diaz / Overtime @ https://flipsidecrypto.xyz/Afonso_Diaz/q/sVvAaf2NMfhr/overtime

    with

    main as (
    select
    tx_hash,
    block_timestamp,
    origin_from_address as user,
    utils.udf_hex_to_int(data)::bigint / 1e18 as amount,
    iff(topics[1] = '0x0000000000000000000000000000000000000000000000000000000000000000', 'Stake', 'Unstake') as event_name
    from
    monad.testnet.fact_event_logs
    where
    tx_succeeded
    and origin_to_address = '0xb2f82d0f38dc453d596ad40a37799446cc89274a'
    and topics[0] = '0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef'
    and contract_address = lower('0xb2f82D0f38dc453D596Ad40A37799446Cc89274A')
    and block_timestamp >= '2025-02-19'
    )

    select
    date_trunc('{{ period }}', block_timestamp) as date,
    event_name,
    count(distinct tx_hash) as transactions,
    count(distinct user) as users,
    sum(amount) as volume,
    avg(amount) as average_amount,
    sum(transactions) over (partition by event_name order by date) as cumulative_transactions,
    sum(volume) over (partition by event_name order by date) as cumulative_volume
    from
    main
    group by 1, 2
    order by 1, 2


    Last run: 7 days ago
    DATE
    EVENT_NAME
    TRANSACTIONS
    USERS
    VOLUME
    AVERAGE_AMOUNT
    CUMULATIVE_TRANSACTIONS
    CUMULATIVE_VOLUME
    1
    2025-02-19 00:00:00.000Stake146031151829462.1894282.0175436162431460329462.189428
    2
    2025-02-19 00:00:00.000Unstake196215601380.8782490.69670951009119621380.878249
    3
    2025-02-20 00:00:00.000Stake5283841739169646.2849243.21068709875567441199108.474352
    4
    2025-02-20 00:00:00.000Unstake131918719124086.5307379.20181911286615153125467.408986
    5
    2025-02-21 00:00:00.000Stake4706036620146927.5521623.122132430132114501346036.026514
    6
    2025-02-21 00:00:00.000Unstake13916897244692.3743343.11466822315129069170159.78332
    7
    2025-02-22 00:00:00.000Stake571763982289452.5539681.564484914703171677435488.580482
    8
    2025-02-22 00:00:00.000Unstake199411219771215.4299093.42711404759449010241375.213229
    9
    2025-02-23 00:00:00.000Stake10018455522208862.6333942.084790319752271861644351.213876
    10
    2025-02-23 00:00:00.000Unstake3406616056419774.47178311.78512793124583076661149.685012
    11
    2025-02-24 00:00:00.000Stake1157006701586673.1504780.749119710268387561731024.364354
    12
    2025-02-24 00:00:00.000Unstake442062000070583.162871.523224197635127282731732.847882
    13
    2025-02-25 00:00:00.000Stake262212161983109306.3916180.416862659291649773840330.755972
    14
    2025-02-25 00:00:00.000Unstake7523136409117897.7122091.51625227904202513849630.560091
    15
    2025-02-26 00:00:00.000Stake519685340649136310.4970010.262294461071169458976641.252973
    16
    2025-02-26 00:00:00.000Unstake14957672580130807.0670610.851930201906352089980437.627152
    17
    2025-02-27 00:00:00.000Stake25480716100375659.8682970.29693010120214242651052301.12127
    18
    2025-02-27 00:00:00.000Unstake8789743537107955.1005211.1736291150744399861088392.727673
    19
    2025-02-28 00:00:00.000Stake22361112804556865.521150.25430442529916478761109166.64242
    20
    2025-02-28 00:00:00.000Unstake9552244287115860.4646731.1254270570875355081204253.192346
    74
    7KB
    31s