MONTH | USER_COUNT | |
---|---|---|
1 | 2025-04-01 00:00:00.000 | 7627882 |
2 | 2025-03-01 00:00:00.000 | 12419685 |
3 | 2025-02-01 00:00:00.000 | 18886065 |
4 | 2025-01-01 00:00:00.000 | 22298935 |
i_danSolana Traders 2025
Updated 2025-04-24
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 swaps AS (
SELECT
block_timestamp
, tx_id
, swapper
, swap_program
FROM solana.defi.ez_dex_swaps
UNION ALL
SELECT
block_timestamp
, tx_id
, swapper
, 'jupiter' AS swap_program
FROM solana.defi.fact_swaps_jupiter_summary
)
SELECT
date_trunc(month, block_timestamp) AS month
-- , swap_program
, COUNT(DISTINCT swapper) AS User_Count
FROM swaps
WHERE block_timestamp >= '2025-01-01'
GROUP BY 1
ORDER BY 1 DESC
Last run: about 1 month ago
4
148B
414s