Afonso_DiazOvertime
    Updated 2 days ago
    with

    main as (
    select
    tx_hash,
    block_timestamp,
    from_address as user,
    tx_fee,
    iff(origin_function_signature = '0xe884624b', 'GM to a Fren', 'GM') as tx_type
    from
    ink.core.fact_transactions
    where
    tx_succeeded
    and to_address = '0x9f500d075118272b3564ac6ef2c70a9067fd2d3f'
    and origin_function_signature in ('0xe884624b', '0xc0129d43')
    )

    select
    date_trunc('{{ period }}', block_timestamp) as date,
    count(distinct tx_hash) as transactions,
    count(distinct user) as users,
    sum(tx_fee) as fee_volume,
    avg(tx_fee) as average_fee_amount,
    sum(transactions) over (order by date) as cumulative_transactions,
    sum(fee_volume) over (order by date) as cumulative_fee_volume
    from
    main
    group by 1
    order by 1


    Last run: 2 days ago
    DATE
    TRANSACTIONS
    USERS
    FEE_VOLUME
    AVERAGE_FEE_AMOUNT
    CUMULATIVE_TRANSACTIONS
    CUMULATIVE_FEE_VOLUME
    1
    2025-01-20 00:00:00.0001336771004300.37390129220.0000027970502941336770.3739012922
    2
    2025-01-27 00:00:00.0005366611207280.72557647550.0000013520201316703381.099477768
    3
    2025-02-03 00:00:00.0004507611033280.43355637019.618320353e-711210991.533034138
    4
    2025-02-10 00:00:00.0004822691134770.43476682549.015027409e-716033681.967800963
    5
    2025-02-17 00:00:00.0004436741126750.36896666238.316165975e-720470422.336767625
    6
    2025-02-24 00:00:00.0004511791101440.32054151887.104530992e-724982212.657309144
    7
    2025-03-03 00:00:00.0005242351187550.30863383935.887318461e-730224562.965942984
    8
    2025-03-10 00:00:00.0006326211790770.36909094885.834313891e-736550773.335033932
    9
    2025-03-17 00:00:00.0006095141775200.24357072213.996146473e-742645913.578604654
    10
    2025-03-24 00:00:00.0008135001762980.24153097932.96903478e-750780913.820135634
    11
    2025-03-31 00:00:00.0007840631739810.28299416773.60932945e-758621544.103129801
    12
    2025-04-07 00:00:00.0005852791724170.31211130685.332692729e-764474334.415241108
    13
    2025-04-14 00:00:00.0005024541670960.33345444936.636516962e-769498874.748695558
    14
    2025-04-21 00:00:00.0001741941545720.047759590952.741747187e-771240814.796455149
    14
    1KB
    6s