HeminCryptopunk Sales and Traders top 10
Updated 2022-09-01
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
›
⌄
with seller_data as (
SELECT
block_timestamp::date as sell_date,
seller_address,
tx_hash,
nft_address,
tokenid,
price as selling_ETH_price,
price_usd as selling_usd_price
FROM ethereum.core.ez_nft_sales
WHERE project_name LIKE 'cryptopunks'
AND price_usd > 0
and event_type LIKE 'sale'
),
buyer_data as (
SELECT
block_timestamp::date as buy_date,
buyer_address,
tx_hash,
nft_address,
tokenid,
price as buying_ETH_price,
price_usd as buying_usd_price
FROM ethereum.core.ez_nft_sales
WHERE project_name LIKE 'cryptopunks'
AND price_usd > 0
and event_type LIKE 'sale'
),
together as (
SELECT
buy_date,
seller_address,
COUNT(DISTINCT id1.tx_hash) as selling_number,
COUNT(DISTINCT id2.tx_hash) as buying_number,
id2.tokenid as tokenid,
sell_date,
Run a query to Download Data