superflyUntitled Query
    Updated 2022-07-27
    with avg_txs as (SELECT count(tx_hash) as count_txs , block_number---
    from polygon.core.fact_transactions----i us general tabel
    where status = 'SUCCESS'
    group by block_number)
    SELECT avg(count_txs) as average_transactios from avg_txs-- How many transactions are done in a block on average
    Run a query to Download Data