farid-c9j0VMAverage number of TX calls per block, day in the first half of 2022
    Updated 2022-06-30
    select block_timestamp::date as date,Count(tx_id)/count(DISTINCT block_id),Count(DISTINCT sender)
    from flipside_prod_db.algorand.application_call_transaction
    where date >= '2022-01-01' and date <='2022-06-29'
    group by 1
    Run a query to Download Data