superflyOverview
Updated 2022-08-30Copy Reference Fork
9
1
2
3
4
5
›
⌄
SELECT COUNT(DISTINCT(TX_HASH)) AS SALES, ---Total number of unique sales
COUNT(DISTINCT(BUYER_ADDRESS)) AS BUYERS,---The total number of unique buyers
COUNT(DISTINCT(SELLER_ADDRESS)) AS SELLERS---The total number of unique identifiers
FROM ethereum.core.ez_nft_sales---i us general tabel
WHERE PROJECT_NAME='cryptopunks' AND EVENT_TYPE='sale' AND BUYER_ADDRESS != '0x0000000000000000000000000000000000000000' AND SELLER_ADDRESS !='0x0000000000000000000000000000000000000000'
Run a query to Download Data