winnie-fs2024-01-18 09:13 AM
    Updated 2024-01-18
    -- Top 8 NFT platforms on Ethereum by total sales in the past 30 days
    select
    platform_name,
    count(*) as sales_count
    from ethereum.nft.ez_nft_sales
    where block_timestamp > current_date - interval '30 days'
    group by platform_name
    order by sales_count desc
    limit 8
    Last run: about 1 month ago
    PLATFORM_NAME
    SALES_COUNT
    1
    opensea280485
    2
    blur57502
    3
    nftx2884
    4
    element2144
    5
    magic eden828
    6
    sudoswap621
    7
    x2y2591
    8
    rarible524
    8
    131B
    2s