Eman-RazMax/Avg/Min Transactions Count per User
    Updated 2024-01-29
    with tab1 as (select sender, count(distinct tx_hash) as tx_count, block_timestamp
    from aptos.core.fact_transactions
    where sender is not null and success='true'
    group by 1,3)

    select date_trunc('{{Time_Frame}}',block_timestamp) as "Date", max(tx_count) as "Max", avg(tx_count) as "Avg", min(tx_count) as "Min"
    from tab1
    where block_timestamp::date>='{{Start_Date}}' and block_timestamp::date<='{{End_Date}}'
    group by 1
    order by 1
    Last run: 8 days agoAuto-refreshes every 24 hours
    Date
    Max
    Avg
    Min
    1
    2023-01-01 00:00:00.000931.0118191
    2
    2023-02-01 00:00:00.0001001.0116791
    3
    2023-03-01 00:00:00.0001001.0318121
    4
    2023-04-01 00:00:00.0001001.1032661
    5
    2023-05-01 00:00:00.0001001.1525541
    6
    2023-06-01 00:00:00.0001001.1250711
    7
    2023-07-01 00:00:00.0001001.2129971
    8
    2023-08-01 00:00:00.000541.1336511
    9
    2023-09-01 00:00:00.000471.0026351
    10
    2023-10-01 00:00:00.0001001.0353971
    11
    2023-11-01 00:00:00.000201.0240111
    12
    2023-12-01 00:00:00.0001001.0148781
    13
    2024-01-01 00:00:00.00071.009691
    13
    553B
    76s