total transactions | Successful Transactions | Failed Transactions | Total NFT collections | Total NFT marketplace | Success Rate (%) | total traders | |
---|---|---|---|---|---|---|---|
1 | 516116 | 515845 | 271 | 376098 | 11 | 99.947 | 3560578 |
datavortexNFT transactions
Updated 2025-03-25
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
›
⌄
SELECT
COUNT(DISTINCT tx_id) AS "total transactions",
COUNT(DISTINCT CASE WHEN succeeded = 'True' THEN tx_id END) AS "Successful Transactions",
COUNT(DISTINCT CASE WHEN succeeded = 'False' THEN tx_id END) AS "Failed Transactions",
COUNT(DISTINCT mint) AS "Total NFT collections",
COUNT(DISTINCT marketplace) AS "Total NFT marketplace",
ROUND(COUNT(DISTINCT CASE WHEN succeeded = 'True' THEN tx_id END) * 100.0 / NULLIF(COUNT(DISTINCT tx_id), 0), 3) AS "Success Rate (%)",
(SELECT COUNT(DISTINCT "trader address")
FROM (
SELECT seller AS "trader address"
FROM solana.nft.fact_nft_sales
UNION
SELECT purchaser AS "trader address"
FROM solana.nft.fact_nft_sales
) AS "total traders") AS "total traders"
FROM
solana.nft.fact_nft_sales
WHERE
block_timestamp BETWEEN '2024-09-01' AND '2024-09-30'
Last run: about 2 months ago
1
46B
26s