MLDZMNmp.3
    Updated 2022-09-26
    select
    PROJECT_NAME as NFTs,
    sum(SALES_AMOUNT) as volume,
    count(tx_id) as no_trade

    from solana.core.fact_nft_sales s left outer join solana.core.dim_nft_metadata b on s.mint=b.MINT
    where MARKETPLACE ilike '%magic eden%' and BLOCK_TIMESTAMP>='2022-07-01'
    group by 1 having NFTs is not null
    order by 2 desc
    limit 10

    Run a query to Download Data