Moe Invisible Friends 3D copy
Updated 2023-05-07
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
›
⌄
select
count(distinct tx_hash) as total_num_txs,
count(distinct seller_address) as total_nft_sellers,
count(distinct buyer_address) as total_nft_buyers,
count(distinct tokenid) as total_num_nfts,
sum(price) as total_nft_sales_eth,
sum(price_usd) as total_nft_sales_usd,
sum(price)/total_nft_buyers as avg_nft_sales_eth,
sum(price_usd)/total_nft_buyers as avg_nft_sales_usd,
total_num_nfts/total_nft_buyers as avg_nfts_per_buyer,
avg(price_usd) as avg_nft_sales_usd,
max(price_usd) as max_nft_sales_usd,
min(price_usd) as floor_price,
total_nft_sales_usd/180 as usd_per_day,
total_num_txs/180 as tx_per_day,
total_nft_buyers/180 as buyers_per_day
from ethereum.core.ez_nft_sales
where currency_symbol in ('WETH', 'ETH')
and
event_type = 'sale'
and
buyer_address not in ('0x0000000000000000000000000000000000000000')
and
block_timestamp >= '2023-01-01'
Run a query to Download Data