Afonso_DiazOvertime
    Updated 2025-02-20
    with t as (
    select
    tx_hash,
    block_timestamp,
    sender as user,
    ((gas_unit_price * gas_used) / 1e8) as tx_fee_apt
    from aptos.core.fact_transactions
    where payload_function = '0x867ed1f6bf916171b1de3ee92849b8978b7d1b9e0a8cc982a3d19d535dfd9c0c::router::register_domain'
    and success = 1
    ),

    t1 as (
    select
    block_timestamp::date as day,
    count(distinct tx_hash) as transactions,
    count(distinct user) as users,
    sum(1) as volume_apt,
    sum(tx_fee_apt) as fee_apt
    from t
    group by 1
    ),

    t2 as (
    select
    min_date::date as day,
    count(distinct user) as new_senders
    from (
    select
    user,
    min(block_timestamp) as min_date
    from t
    group by 1
    )
    group by 1
    )

    Last run: 2 months ago
    DAY
    TRANSACTIONS
    USERS
    VOLUME_APT
    FEE_APT
    NEW_USERS
    RETURNING_USERS
    CUMULATIVE_NEW_USERS
    CUMULATIVE_FEE_APT
    1
    2023-09-07 00:00:00.0002220.0054362020.005436
    2
    2023-09-25 00:00:00.0005550.0081434160.013579
    3
    2023-09-26 00:00:00.0001721711720.3278817101770.341459
    4
    2023-09-27 00:00:00.0002602582600.49971725714340.841176
    5
    2023-09-28 00:00:00.0002962962960.56943629607301.410612
    6
    2023-09-29 00:00:00.0002192172190.42106821619461.83168
    7
    2023-09-30 00:00:00.0004474454470.863429445013912.695109
    8
    2023-10-01 00:00:00.0001311311310.253032130115212.948141
    9
    2023-10-02 00:00:00.0001231231230.235824123016443.183965
    10
    2023-10-03 00:00:00.0001741721740.331221171118153.515186
    11
    2023-10-04 00:00:00.0001811811810.347385180119953.862571
    12
    2023-10-05 00:00:00.0002612612610.50984261022564.372411
    13
    2023-10-06 00:00:00.0001931931930.3713193024494.743711
    14
    2023-10-07 00:00:00.0001411411410.272278141025905.015989
    15
    2023-10-08 00:00:00.0002012012010.388926201027915.404915
    16
    2023-10-09 00:00:00.0002072072070.404068207029985.808983
    17
    2023-10-10 00:00:00.0001581581580.304421158031566.113404
    18
    2023-10-11 00:00:00.0009393930.17984693032496.29325
    19
    2023-10-12 00:00:00.0001671661670.319555165134146.612805
    20
    2023-10-13 00:00:00.0001631581630.310528158035726.923333
    ...
    516
    35KB
    132s