MoDeFimonad tn - users txs
    Updated 4 days ago
    select
    case when txs<=2 then '1 or 2 TXs'
    when txs>2 and txs<=5 then '3 to 5 TXs'
    when txs>5 and txs<=10 then '6 to 10 TXs'
    when txs>10 and txs<=20 then '11 to 20 TXs'
    when txs>20 and txs<=100 then '21 to 100 TXs'
    when txs>100 and txs<=1000 then '101 to 1000 TXs'
    when txs>1000 then '1000+ TXs'
    else 'log' end as "TXs",
    count(user) as "# of Users"
    from
    (select FROM_ADDRESS as user, count(*) as txs
    from monad.testnet.fact_transactions
    where TX_SUCCEEDED=true
    group by 1)
    group by 1
    order by 2 desc

    Last run: 4 days ago
    TXs
    # of Users
    1
    1 or 2 TXs7734913
    2
    3 to 5 TXs1619618
    3
    21 to 100 TXs1273953
    4
    6 to 10 TXs790599
    5
    11 to 20 TXs766318
    6
    101 to 1000 TXs337803
    7
    1000+ TXs29904
    7
    167B
    18s