TIME | CATEGORY | PROTOCOL | NEW_USERS | |
---|---|---|---|---|
1 | 2025-02-01 00:00:00.000 | cex | bitget | 136243 |
2 | 2025-02-01 00:00:00.000 | cex | binance | 13752 |
3 | 2025-02-01 00:00:00.000 | cex | bybit | 4105 |
4 | 2025-02-01 00:00:00.000 | cex | mexc | 3349 |
5 | 2025-02-01 00:00:00.000 | cex | fixedfloat | 2406 |
6 | 2025-02-01 00:00:00.000 | cex | gate.io | 1429 |
7 | 2025-02-01 00:00:00.000 | cex | kucoin | 916 |
8 | 2025-02-01 00:00:00.000 | cex | coinbase | 359 |
9 | 2025-02-01 00:00:00.000 | cex | okx | 98 |
10 | 2025-02-01 00:00:00.000 | cex | bitso | 78 |
11 | 2025-02-01 00:00:00.000 | cex | maicoin | 60 |
12 | 2025-02-01 00:00:00.000 | cex | bitfinex | 20 |
13 | 2025-02-01 00:00:00.000 | cex | btse | 19 |
14 | 2025-02-01 00:00:00.000 | cex | woo network | 16 |
15 | 2025-02-01 00:00:00.000 | cex | lbank | 11 |
16 | 2025-02-01 00:00:00.000 | cex | swissborg | 3 |
17 | 2025-02-01 00:00:00.000 | cex | bitbase | 2 |
18 | 2025-02-01 00:00:00.000 | cex | bitbank | 1 |
cybergenlab[CEX Overview] New users per protocols (Pie Chart)
Updated 2025-03-29
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
›
⌄
--Get historical project user growth
with monthly_new_users as (
select
date_trunc('month', block_timestamp) as time,
label_type as category,
project_name as protocol,
count(distinct from_address) as new_users,
from arbitrum.core.fact_transactions as transactions
left join arbitrum.core.dim_labels labels on transactions.to_address = labels.address
where block_timestamp >= dateadd(month, -1, date_trunc('month',current_date()))
and block_timestamp < date_trunc('month', current_date())
and nonce = 0
and category in ('cex')
and status = 'SUCCESS'
group by 1,2,3
)
select
*
from monthly_new_users
order by 4 desc
Last run: 26 days ago
18
854B
82s