permarytop nft protocols bsc, avax
Updated 2024-11-03
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
31
32
33
34
35
36
›
⌄
-- Popular NFT Platforms for BNB Chain
SELECT
platform_name,
transaction_count,
'BNB Chain' AS chain
FROM (
SELECT
platform_name,
COUNT(*) AS transaction_count
FROM
bsc.nft.ez_nft_sales -- Adjust the table name according to your schema
WHERE
block_timestamp BETWEEN '2024-01-01' AND '2024-12-31'
GROUP BY
platform_name
ORDER BY
transaction_count DESC
LIMIT 10 -- Limit to top 10 platforms
) AS bnb_platforms
UNION ALL
-- Popular NFT Platforms for Avalanche
SELECT
platform_name,
transaction_count,
'Avalanche' AS chain
FROM (
SELECT
platform_name,
COUNT(*) AS transaction_count
FROM
avalanche.nft.ez_nft_sales -- Adjust the table name according to your schema
WHERE
block_timestamp BETWEEN '2024-01-01' AND '2024-12-31'
GROUP BY
QueryRunArchived: QueryRun has been archived