PLATFORM_NAME | SALES_COUNT | |
---|---|---|
1 | opensea | 280485 |
2 | blur | 57502 |
3 | nftx | 2884 |
4 | element | 2144 |
5 | magic eden | 828 |
6 | sudoswap | 621 |
7 | x2y2 | 591 |
8 | rarible | 524 |
winnie-fs2024-01-18 09:13 AM
Updated 2024-01-18
9
1
2
3
4
5
6
7
8
9
›
⌄
-- 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
8
131B
2s