Afonso_DiazOvertime
    Updated 2025-04-14
    with

    main as (
    select
    tx_hash,
    block_timestamp,
    tx_signer as user,
    transaction_fee / 1e24 as tx_fee
    from
    near.core.fact_transactions
    where
    tx_succeeded
    and (
    tx_receiver ilike any ('tg', '%herewallet.near', '%hot.tg') or
    tx:actions[0]:delegate:delegate_action:receiver_id ilike any ('tg', '%herewallet.near', '%hot.tg')
    )
    ),

    new_users as (
    select
    date_trunc('month', min_date) as month,
    count(distinct user) as new_user
    from (
    select
    user,
    min(block_timestamp) as min_date
    from main
    group by 1
    )
    group by 1
    ),

    overtime as (
    select
    date_trunc('month', block_timestamp) as month,
    count(distinct tx_hash) as transactions,
    Last run: 13 days ago
    MONTH
    TRANSACTIONS
    USERS
    VOLUME_FEE_NEAR
    AVERAGE_FEE_NEAR
    MAX_FEE_NEAR
    NEW_USERS
    RETURNING_USERS
    CUMULATIVE_NEW_USERS
    CUMULATIVE_TRANSACTIONS
    CUMULATIVE_VOLUME_FEE_NEAR
    1
    2022-07-01 00:00:00.000110100.0963640.0008760363640.002024100101100.096364
    2
    2022-08-01 00:00:00.00010913441.0318770.0009458084330.002039339534912011.128241
    3
    2022-09-01 00:00:00.00010174580.9602350.0009441838740.002264085075722182.088476
    4
    2022-10-01 00:00:00.00054567166.6084930.0012112340540.003822530186128776748.696969
    5
    2022-11-01 00:00:00.00021074801.9711170.000935508780.0038711952851482978110.668086
    6
    2022-12-01 00:00:00.00012973236312.9267440.0009964344410.008389212224136042275423.59483
    7
    2023-01-01 00:00:00.00052366634.8543450.0009271094350.00389124641738502799028.449175
    8
    2023-02-01 00:00:00.00049633344.6066780.0009282043120.0040559224239423295333.055853
    9
    2023-03-01 00:00:00.00034736703.4593320.0009960644980.00394336230843043642636.515185
    10
    2023-04-01 00:00:00.00083745708.1643160.0009749601150.0023189847244024480044.679501
    11
    2023-05-01 00:00:00.00094574478.7789070.000928297240.0038389735044995425753.458408
    12
    2023-06-01 00:00:00.00038893943.6661720.0009427030080.0023188630845855814657.12458
    13
    2023-07-01 00:00:00.00033724483.1844840.0009443902730.00327917027847556151860.309064
    14
    2023-08-01 00:00:00.00027120703127.8757250.0010278659660.012596463568112188863888.184789
    15
    2023-09-01 00:00:00.00067529636.2115690.0009199598640.002117190773114089539094.396358
    16
    2023-10-01 00:00:00.00092139348.5995030.0009334096390.00263325068411658104603102.995861
    17
    2023-11-01 00:00:00.00068619329.1896320.0013394012530.0257623170111889111464112.185493
    18
    2023-12-01 00:00:00.00015750477438.5907160.002450204190.0409413216155815105127214150.776209
    19
    2024-01-01 00:00:00.000535344709104.7206550.0019561522580.0256752939177018044180748255.496864
    20
    2024-02-01 00:00:00.0002096827941362517559.0471280.0008374100290.06117441033532904283792114902717814.543992
    34
    4KB
    181s