Ali3NPlatforms And Number of Transactions With No (or 0%) Royalty Fees
    Updated 2022-10-05
    select platform_name,
    count (distinct tx_hash) as Sales,
    sum (price_usd) as Volume,
    count (distinct buyer_address) as Buyers,
    count (distinct seller_address) as Sellers
    from ethereum.core.ez_nft_sales
    where platform_name in ('opensea','looksrare','x2y2')
    and creator_fee_usd =0
    group by 1
    Run a query to Download Data