IBC_insiderblur 9
Updated 2023-02-23
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
select count(*) as number , PLATFORM_NAME ,
case when BLOCK_TIMESTAMP>'2023-02-14' then 'after airdrop' else 'before aordrop' end as type ,
sum(PRICE_USD) as volume ,
count(distinct BUYER_ADDRESS) as active_users,
count(distinct NFT_ADDRESS) as unique_NFT ,
date_trunc(day,BLOCK_TIMESTAMP) as date ,
avg(PRICE_USD) as daily_NFT_price ,
min(PRICE_USD) as daily_NFT_min_price,
max(PRICE_USD) as daily_NFT_max_price
from
ethereum.core.ez_nft_sales
where
PLATFORM_NAME='blur'
group by 2 ,3, date
Run a query to Download Data