hessTotal users
    Updated 2025-03-05
    with users as ( select block_number,
    block_timestamp,
    tx_hash,
    origin_from_address as user
    from sei.core_evm.fact_event_logs
    UNION
    select block_number,
    block_timestamp,
    tx_hash,
    from_address as user
    from sei.core_evm.fact_transactions)

    select trunc(block_timestamp,'day') as daily,
    count(DISTINCT user) as users,
    count(DISTINCT block_number) as "Produced Blocks",
    count(DISTINCT tx_hash) as transactions,
    transactions/users as "Avg per User"
    from users
    where block_timestamp::date >= '2024-05-27'
    group by 1

    Last run: about 1 month ago
    DAILY
    USERS
    Produced Blocks
    TRANSACTIONS
    Avg per User
    1
    2025-03-02 00:00:00.0002910401574905823052.000773
    2
    2024-08-22 00:00:00.000617331796390066.318808
    3
    2024-05-29 00:00:00.000164815630164679.992112
    4
    2024-07-04 00:00:00.000572241762784648.681818
    5
    2024-10-18 00:00:00.000300851007481633765.43048
    6
    2025-01-10 00:00:00.0004846031557737029581.450585
    7
    2025-02-16 00:00:00.0002537831625365292802.085561
    8
    2024-12-20 00:00:00.0002723881733267151822.6256
    9
    2024-08-31 00:00:00.000601871373042440024.054065
    10
    2024-10-27 00:00:00.000538791512182566504.763451
    11
    2024-07-07 00:00:00.000904205912345325.943584
    12
    2025-02-04 00:00:00.0002441051526035444152.230249
    13
    2024-07-22 00:00:00.0001620632008823154.46358
    14
    2024-09-07 00:00:00.0007786617308197010.527871
    15
    2024-11-30 00:00:00.0002669001613184467151.673717
    16
    2025-01-19 00:00:00.0003041451615716438092.116783
    17
    2024-09-12 00:00:00.00080406978171394751.734634
    18
    2024-10-06 00:00:00.0002059364339925544.49444
    19
    2024-05-31 00:00:00.000234013072617754775.874786
    20
    2025-01-27 00:00:00.0002776331567596159812.218688
    ...
    283
    16KB
    39s