lagandispenserAverage number of TX calls per block in the last 6 months
    Updated 2022-06-30
    with last_6m_2021 as (select block_id, count(tx_id) as tx_count from flipside_prod_db.algorand.application_call_transaction
    where block_timestamp >= '2021-07-01' and block_timestamp <= '2021-12-31' group by 1)
    select avg(tx_count) from last_6m_2021
    Run a query to Download Data