elsinaDaily activity
    Updated 2025-02-15
    SELECT
    date_trunc('month', 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
    where
    date >= '2025-01-01'
    group by
    date
    order by
    date asc
    Last run: about 1 month ago
    DATE
    USER_COUNT
    TX_COUNT
    SECONDS_PER_DAY
    TPS
    CUM_TX_COUNT
    1
    2025-01-01 00:00:00.000408001150855716864001746.015231150855716
    2
    2025-02-01 00:00:00.0002329306750086986400781.260058218356585
    2
    145B
    41s