Monthly crypto art volume
Nifty Gateway is not included in this graph since their payments are done off-chain.
Nifty Gateway is not included in this graph since their payments are done off-chain.
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.
Nifty Gateway is not included in this graph since their payments are done off-chain.
1WITH superrare AS
2 (SELECT date_trunc('month', evt_block_time) AS MONTH,
3 sum(_amount / 1e18 * price) AS volume
4 FROM
5 (SELECT evt_block_time,
6 _amount
7 FROM superrare."SuperRareMarketAuction_evt_Sold"
8 UNION ALL SELECT evt_block_time,
9 _amount
10 FROM superrare."SuperRare_evt_Sold"
11 UNION ALL SELECT evt_block_time,
12 _amount
13 FROM superrare."SuperRareMarketAuction_evt_AcceptBid"
14 UNION ALL SELECT evt_block_time,
15 _amount
16 FROM superrare."SuperRare_evt_AcceptBid"
17 UNION ALL SELECT block_time,
18 bytea2numericpy(substring(DATA
19 FROM 33
20 FOR 32))
21 FROM ethereum."logs"
22 WHERE contract_address = '\x8c9f364bf7a56ed058fc63ef81c6cf09c833e656'
23 AND topic1 = '\xea6d16c6bfcad11577aef5cc6728231c9f069ac78393828f8ca96847405902a9'
24 AND block_time >= '2020-12-08'
25 UNION ALL SELECT block_time,...
Nifty Gateway is not included in this graph since their payments are done off-chain.