articoloquintoAverage application calls per block during the second half of 2021
    Updated 2022-06-29
    select avg("application calls") as "average application calls per block" from
    (select count(*) as "application calls", BLOCK_ID from flipside_prod_db.algorand.application_call_transaction
    where BLOCK_TIMESTAMP between '2021-06-01' and '2021-12-31'
    group by 2)

    Run a query to Download Data