Wikist-oA67h0Gritnova L3 a - Number of transactions divided between marketplaces
    Updated 2023-01-28
    select
    distinct platform_name,
    count(distinct tx_hash) as txs
    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