SELECT
block_id,
count(tx_id) as applications_per_block,
count(sender) as wallets,
count(DISTINCT sender) as distinct_wallets
from algorand.application_call_transaction
where block_timestamp >= '2021-07-01'
group by block_id
order by block_id
limit 10