NuveveCryptoArchivedAverage Monthly NFTs Sold
Updated 2022-10-02
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
›
⌄
with ethereum as (
select
concat('Ethereum') as chain,
count(tx_hash)/9 as avg_sales -- divided by 9 months
from ethereum.core.ez_nft_sales
where block_timestamp >= '2022-01-01'
and block_timestamp < '2022-10-01'
),
solana as (
select
concat('Solana') as chain,
count(tx_id)/9 as avg_sales -- divided by 9 months
from solana.core.fact_nft_sales
where block_timestamp >= '2022-01-01'
and block_timestamp < '2022-10-01'
),
flow as (
select
concat('Flow') as chain,
count(tx_id)/9 as avg_sales -- divided by 9 months
from flow.core.ez_nft_sales
where block_timestamp >= '2022-01-01'
and block_timestamp < '2022-10-01'
)
select *
from ethereum
union
select *
from solana
union
select *
from flow
Run a query to Download Data