0xaimanMax Number of txn in a minute on Thorchain
    Updated 2021-12-05

    select minute, n_txn
    from (select date_trunc('minute',block_timestamp) as minute, count(tx_id) as n_txn
    from thorchain.swaps
    -- where n_txn>20
    group by 1 order by 1)
    where n_txn>140 and minute>'2021-10-20'


    Run a query to Download Data