Updated 2022-10-24
    select
    marketplace,
    sum(sales_amount) as volume_sol,
    count(distinct TX_ID) as trades,
    count(distinct PURCHASER) as num_buyer,
    count(distinct SELLER) as num_seller
    from solana.core.fact_nft_sales sales
    where succeeded
    group by 1

    Run a query to Download Data