granadohoAmount of Transactions in the Biggest Block
    Updated 2022-01-20
    select
    block_id,
    count(block_id) as amount_of_transaction
    from algorand.transactions
    group by block_id
    order by amount_of_transaction desc
    limit 1

    Run a query to Download Data