elsinaMonthly activity
    Updated 2025-02-15
    SELECT
    date_trunc('day', block_timestamp) as date,
    count(DISTINCT account) as user_count,
    count(DISTINCT transaction_hash) as tx_count,
    24 * 60 * 60 AS seconds_per_day,
    count(DISTINCT transaction_hash) / seconds_per_day as TPS,

    sum(tx_count) over (order by date) as cum_tx_count
    from
    stellar.core.fact_transactions
    group by
    date
    order by
    date asc




    Last run: 29 days ago
    DATE
    USER_COUNT
    TX_COUNT
    SECONDS_PER_DAY
    TPS
    CUM_TX_COUNT
    1
    2024-01-01 00:00:00.0005895746712058640054.0648734671205
    2
    2024-01-02 00:00:00.0006711359129848640068.43731510584189
    3
    2024-01-03 00:00:00.0007008051389768640059.47888915723165
    4
    2024-01-04 00:00:00.0006810044400238640051.38915520163188
    5
    2024-01-05 00:00:00.0006716436711718640042.49040523834359
    6
    2024-01-06 00:00:00.0006720036594558640042.35480327493814
    7
    2024-01-07 00:00:00.0006541435349228640040.91344931028736
    8
    2024-01-08 00:00:00.0006886942377948640049.04854235266530
    9
    2024-01-09 00:00:00.0006895844814988640051.8691939748028
    10
    2024-01-10 00:00:00.0007606844807908640051.86099544228818
    11
    2024-01-11 00:00:00.0007249647728508640055.24131949001668
    12
    2024-01-12 00:00:00.0007075651397448640059.48777854141412
    13
    2024-01-13 00:00:00.0006660742722868640049.44775558413698
    14
    2024-01-14 00:00:00.0006282645500088640052.6621362963706
    15
    2024-01-15 00:00:00.0006750847111438640054.52711867674849
    16
    2024-01-16 00:00:00.0006734540527238640046.90651671727572
    17
    2024-01-17 00:00:00.0006640141031088640047.48967675830680
    18
    2024-01-18 00:00:00.0007096438245688640044.26583379655248
    19
    2024-01-19 00:00:00.0006976639215588640045.38840383576806
    20
    2024-01-20 00:00:00.0006804153567368640061.99925988933542
    ...
    412
    27KB
    474s