CATEGORY | USER_COUNT | |
---|---|---|
1 | Very Low Activity <10 | 4822164 |
2 | Low Activity 10-100 | 2344533 |
3 | Moderate Activity 100-500 | 231989 |
4 | High Activity 500-1000 | 7519 |
5 | Very High Activity 1000-5000 | 2737 |
6 | Extreme Activity >5000 | 576 |
picasoshare transaction
Updated 2025-02-14
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
›
⌄
WITH user_transaction_counts AS (
SELECT
from_address AS user,
COUNT(DISTINCT TX_HASH) AS tx_count
FROM ronin.core.fact_transactions
GROUP BY from_address
),
transaction_categories AS (
SELECT
tx_count,
CASE
WHEN tx_count < 10 THEN 'Very Low Activity <10'
WHEN tx_count BETWEEN 10 AND 100 THEN 'Low Activity 10-100'
WHEN tx_count BETWEEN 100 AND 500 THEN 'Moderate Activity 100-500'
WHEN tx_count BETWEEN 500 AND 1000 THEN 'High Activity 500-1000'
WHEN tx_count BETWEEN 1000 AND 5000 THEN 'Very High Activity 1000-5000'
ELSE 'Extreme Activity >5000'
END AS category
FROM user_transaction_counts
)
SELECT
category,
COUNT(*) AS user_count
FROM transaction_categories
GROUP BY category
ORDER BY user_count DESC;
Last run: about 1 month ago
6
205B
38s