chibestEth NFT Market Place By Sales In The Last 30days
    Updated 2024-03-16

    -- I'm getting started with Flipside by running your first query:
    -- the SQL statement below will get you a list of NFT
    -- platforms on Ethereum, ranked by how many sales
    -- they've had in the past month.


    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 14 hours ago
    PLATFORM_NAME
    SALES_COUNT
    1
    opensea303488
    2
    blur27940
    3
    nftx2603
    4
    element659
    5
    magic eden416
    6
    sudoswap365
    7
    rarible224
    8
    larva labs109
    8
    136B
    1s