Updated 2022-10-31
    select
    date_trunc('day',block_timestamp) as date,
    marketplace,
    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
    where marketplace in ('hyperspace', 'coral cube')
    AND succeeded = 'TRUE' and date >= '2022-09-22'
    group by date,marketplace
    order by date

    Run a query to Download Data