CATEGORY | TOTAL_TXNS | |
---|---|---|
1 | 🏦 Super Contract (10k+ txs) | 1254481 |
2 | 🔥 Hot Contract (1k - 9,999 txs) | 48203 |
3 | 🧪 Newbie (0 - 99 txs) | 26077 |
4 | 🌱 Growing Contract (100 - 999 txs) | 3159 |
Afonso_DiazGrouping Contracts
Updated 2025-05-01
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
with main as (
select
tx_hash,
block_timestamp,
origin_from_address as user,
contract_address
from
mezo.testnet.fact_event_logs
where
tx_succeeded
),
contract_tx_counts as (
select
contract_address,
count(*) as tx_count
from
main
group by
contract_address
),
categorized_contracts as (
select
contract_address,
tx_count,
case
when tx_count >= 10000 then '🏦 Super Contract (10k+ txs)'
when tx_count >= 1000 then '🔥 Hot Contract (1k - 9,999 txs)'
when tx_count >= 100 then '🌱 Growing Contract (100 - 999 txs)'
else '🧪 Newbie (0 - 99 txs)'
end as category
from
contract_tx_counts
),
category_summary as (
select
category,
Last run: 20 days ago
4
171B
0s