hbd1994Overall Review
Updated 2022-06-14
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
select
nft_address as "NFT Address",
project_name as "NFT Name",
count(tx_hash) as "Total Number of Sales",
sum(price_usd) as "Total Amount of Sales",
("Total Amount of Sales"/"Total Number of Sales") as "Average Amount per Sale",
count(distinct buyer_address) as "Total Unique Buyers"
from ethereum.core.ez_nft_sales
where block_timestamp >= CURRENT_DATE - 60
and platform_name = 'nftx'
and EVENT_TYPE = 'redeem'
group by 1 , 2
Run a query to Download Data