2844NFT sales volume
    Updated 2022-04-02
    select sum(sales_amount) as VOLUME, marketplace
    from solana.fact_nft_sales
    where program_id = 'SPf5WqNywtPrRXSU5enq5z9bPPhREaSYf2LhN5fUxcj'
    and block_timestamp >= '2022-03-12'
    and succeeded = 'true'
    group by marketplace

    UNION
    select sum(sales_amount) VOLUME ,marketplace
    from solana.fact_nft_sales
    where program_id = 'M2mx93ekt1fmXSVkTrUL9xVFHkmME8HTUi5Cyc5aF7K'
    and block_timestamp >= '2022-03-12'
    and succeeded = 'true'
    group by marketplace


    Run a query to Download Data