KingTigerMafia-7mwRZbCryptopunk 1
Updated 2022-08-31
9
1
2
3
›
⌄
SELECT COUNT (DISTINCT buyer_address) as num_buyers, COUNT(DISTINCT seller_address) as num_sellers, COUNT(DISTINCT tx_hash) as count_tx, COUNT(DISTINCT tokenid) as num_token, SUM(price_usd) as total_price_usd
FROM ethereum.core.ez_nft_sales
WHERE project_name = 'cryptopunks' AND event_type = 'sale' AND buyer_address != '0x0000000000000000000000000000000000000000'
Run a query to Download Data