h4wkNFL All day
Updated 2022-07-04
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
-- Q16. What is the total sales volume of NFL All Day?
-- How does it stack up compared to other projects, like NBA Top Shots?
select date_trunc(day, block_timestamp) as date,
count(distinct buyer) as buyer_count,
count(distinct seller) as seller_count,
count(*) as sale_count,
sum(price) as sale_volume
from flow.core.fact_nft_sales
where nft_collection ilike ('%allday%') and tx_succeeded = TRUE
group by date
Run a query to Download Data