elsinaMonthly activity
    Updated 2025-03-01
    SELECT
    date_trunc('month', block_timestamp) as date,

    count(distinct tx_hash) as tx_count,
    count(distinct from_address) as user_count,
    sum(value) as volume,
    sum(tx_fee) as tx_fees,

    from
    boba.core.fact_transactions
    group by
    date
    order by
    date asc







    QueryRunArchived: QueryRun has been archived