Moe Polygon max tx in a block
    Updated 2022-07-24
    select * from
    (select
    BLOCK_NUMBER,
    count (tx_hash) as tx_count
    FROM polygon.core.fact_transactions
    GROUP BY 1) order by 2 desc limit 1
    Run a query to Download Data