rezarwzthe smallest block
    Updated 2022-07-27
    select
    BLOCK_NUMBER,
    count(distinct(TX_HASH)) as n_txns
    from polygon.core.fact_transactions
    group by BLOCK_NUMBER
    order by n_txns asc
    LIMIT 1
    Run a query to Download Data