rajsArbitrum # of Txs and Users
    Updated 2022-09-06
    SELECT
    date_trunc('day', block_timestamp) as date,
    count(*) as no_of_txs,
    count(distinct from_address) as no_of_active_users,
    count(*) / count(distinct from_address) as avg_tx_per_user
    from arbitrum.core.fact_transactions
    group by 1
    order by 1
    Run a query to Download Data