HadisehThe Battle of the Solana NFT Aggregator 7
    Updated 2022-10-30
    select project_name as project,
    sum(sales_amount) as total_sale
    from solana.core.fact_nft_sales as x inner join solana.core.dim_nft_metadata as y
    on x.MINT=y.MINT
    where MARKETPLACE='hyperspace'
    group by project
    order by total_sale desc
    limit 10



    Run a query to Download Data