bachiavg transactiosn per block - flow
    Updated 2022-07-27

    select block_height::string as block,
    count(distinct tx_id) as no_of_transactions
    from flow.core.fact_transactions
    group by block
    order by no_of_transactions DESC
    limit 5000
    Run a query to Download Data