DIS | USER_COUNT | USER_COUNT_PERCENTAGE | |
---|---|---|---|
1 | B. 2-3 | 797 | 0.743429 |
2 | G. 64-127 | 7245 | 6.758017 |
3 | E. 16-31 | 29013 | 27.062851 |
4 | C. 4-7 | 2301 | 2.146335 |
5 | D. 8-15 | 7181 | 6.698319 |
6 | more than 128 | 9755 | 9.099304 |
7 | F. 32-63 | 50619 | 47.216574 |
8 | A. 1 | 295 | 0.275171 |
elsinaDistribution of User Transactions (Fablebone)
Updated 2025-02-21
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 per_user as (
SELECT
origin_from_address as user,
count(distinct tx_hash) as tx_count
from
ronin.core.fact_event_logs
where
contract_address in ('0x3825ff6b6ad0f460660547e5890425ee821bd02c', '0xd887014121ddbad4494093689997125dde30612a')
group by
user
)
select
case
when tx_count < 2 then 'A. 1'
when tx_count < 4 then 'B. 2-3'
when tx_count < 8 then 'C. 4-7'
when tx_count < 16 then 'D. 8-15'
when tx_count < 32 then 'E. 16-31'
when tx_count < 64 then 'F. 32-63'
when tx_count < 128 then 'G. 64-127'
else 'more than 128' end as dis,
count(distinct user) as user_count,
100.0 * count(distinct user) / sum(count(distinct user)) over () as user_count_percentage
from per_user
group by 1
Last run: 24 days ago
8
216B
2s