Max Number of Txn in a minute

    In this analytics, I will attempt to visualize the max number of txn happening in a minute on Thorchain. This is useful to measure Thorchain capacity to handle high traffic transactions

    Loading...
    Loading...

    1.0 Methodology

    1.1 Number of txn in a minute

    Using thorchain.swaps table

         1- Using date_trunc('min',block_timestamp) and count(tx_id)
         2- This will yield time in minute and number txn
         3- group by minute, we will get the number of txn in a minute. 
    

    1.2 Max number of txn in a minute, on each day.

    Using table from 1.1

      1- use date_trunc('day',min) and max(count(tx_id))
      2- this will yield only the max number of txn in a minute, on each day 
    

    2.0 Results

    The below chart shows the maximum number of txn in a minute, per day.

    The max number of txn in a minute since inception is 149 n_txn at 3:44 pm on 22nd Oct 2021.

    Keep in mind, that THORchain is still not a mainstream crypto instrument, so the metrics has yet to show the highest number of txn yet.