negin-khTop 10 NFT collections on Hyperspace (in number of sales)
    Updated 2022-10-31
    select
    distinct project_name,
    count(distinct tx_id) as sales_count,
    count(distinct purchaser) as buyers_count,
    sum(sales_amount) as sales_volume
    from solana.core.fact_nft_sales t1
    join solana.core.dim_nft_metadata t2 on t1.mint = t2.mint
    where marketplace = 'hyperspace'
    and block_timestamp >= '2022-09-22'
    group by 1 order by 2 desc
    limit 10
    Run a query to Download Data