Wikist-oA67h0Gritnova L3 b - All NFT trades divided between marketplaces from 2023-01-01 into the future
    Updated 2023-01-28
    select
    distinct platform_name,
    count(distinct tx_hash) as txs,
    count(distinct buyer_address) as buyers
    from ethereum.core.ez_nft_sales
    where date(block_timestamp) >= '2023-01-01'
    group by platform_name
    order by txs desc
    Run a query to Download Data