articoloquintoAverage application calls per block during the first half of 2022
    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 '2022-01-01' and '2022-05-31'
    group by 2)

    Run a query to Download Data