shreexTop 10 collections Hyperspace
Updated 2022-10-31
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
›
⌄
with lists as (
select distinct mint as col,contract_name as collection_name from solana.core.dim_nft_metadata
)
select
'Hyperspace' as marketplace,
collection_name,
sum(sales_amount) as sales_volume,
count(distinct mint) as unique_nfts,
count(distinct tx_id) as number_of_sales,
count(distinct purchaser) as buyers,
count(distinct seller) as sellers
from solana.core.fact_nft_sales,lists
where marketplace = 'hyperspace'
AND succeeded = 'TRUE' and block_timestamp >= '2022-09-22' and col = mint
group by collection_name
order by sales_volume DESC
LIMIT 10
Run a query to Download Data