mmdrezaDistribution of Sales on Marketplaces (By Sales Volume)
    Updated 2022-11-22
    select
    platform_name,
    count(tx_hash) as sales_count,
    sum (price_usd) as total_usd_volume
    from ethereum.core.ez_nft_sales
    where nft_address = '0x629a673a8242c2ac4b7b8c5d8735fbeac21a6205'
    and price_usd > 0
    group by 1
    Run a query to Download Data