SELLERS | AMOUNT_RANGE | |
---|---|---|
1 | 6032 | 101 to 500 NFTs |
2 | 41032 | 11 to 50 NFTs |
3 | 45215 | 5 to 10 NFTs |
4 | 7007 | 51 to 100 NFTs |
5 | 1366 | Above 500 NFTs |
6 | 293703 | Less than 5 NFTs |
Specterdistribution of seller by nft_sold
Updated 2025-04-04
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
›
⌄
WITH seller_distribution AS (
-- Calculate how many NFTs each buyer has sold
SELECT
seller_address,
COUNT(tokenid) AS nfts_sold
FROM
base.nft.ez_nft_sales
WHERE
platform_name = 'opensea'
GROUP BY
seller_address
)
SELECT
COUNT(DISTINCT seller_address) AS sellers,
CASE
WHEN nfts_sold < 5 THEN 'Less than 5 NFTs'
WHEN nfts_sold BETWEEN 5 AND 10 THEN '5 to 10 NFTs'
WHEN nfts_sold BETWEEN 11 AND 50 THEN '11 to 50 NFTs'
WHEN nfts_sold BETWEEN 51 AND 100 THEN '51 to 100 NFTs'
WHEN nfts_sold BETWEEN 101 AND 500 THEN '101 to 500 NFTs'
WHEN nfts_sold > 500 THEN 'Above 500 NFTs'
END AS amount_range
FROM
seller_distribution
GROUP BY
amount_range
ORDER BY
amount_range;
Last run: 25 days ago
6
149B
1s