/ OpenSea users change (MoM) @johaya
About queries and results
Dune Analytics lets you explore, create, and share Ethereum analytics. You can find an endless amount of great queries and dashboards on Dune.
We have decoded Ethereum smart contract data so you can do powerful analysis with simple SQL queries and visualise the query results into beautiful graphs.
Dune Analytics is free for everyone forever. If you want extra features like private queries, export your results and more check out our Pro plan.
SQL query results
SQL query
1Select date,
2 users-users2 as diff
3FROM
4 (SELECT date,
5 lag(users) over (order by date asc ROWS BETWEEN unbounded preceding AND CURRENT ROW) as users2,
6 users
7FROM
8 (SELECT date, count(USER) AS users
9 FROM
10 (SELECT min(date) AS date,
11 maker AS USER
12 FROM
13 (SELECT date_trunc('month', min(evt_block_time)) AS date,
14 maker
15 FROM wyvern."WyvernExchange_evt_OrdersMatched"
16 GROUP BY maker
17 UNION SELECT date_trunc('month', min(evt_block_time)) AS date,
18 taker
19 FROM wyvern."WyvernExchange_evt_OrdersMatched"
20 GROUP BY taker) AS table1
21 GROUP BY maker) AS table2
22 GROUP BY date
23 ORDER BY date) AS table3)a