0xaimanAverage Transaction Per Day -avalanche
    Updated 2022-12-09
    select avg(n_txn)
    from (select date(block_timestamp) as day, count(tx_hash) as n_txn from avalanche.core.fact_transactions
    where datediff('day',block_timestamp,getdate())<=14
    group by 1)

    Run a query to Download Data