TXs | # of Users | |
---|---|---|
1 | 1 or 2 TXs | 7734913 |
2 | 3 to 5 TXs | 1619618 |
3 | 21 to 100 TXs | 1273953 |
4 | 6 to 10 TXs | 790599 |
5 | 11 to 20 TXs | 766318 |
6 | 101 to 1000 TXs | 337803 |
7 | 1000+ TXs | 29904 |
MoDeFimonad tn - users txs
Updated 4 days ago
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
›
⌄
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
7
167B
18s