KaskoazulNFL All Day Sales stats overall
Updated 2022-09-06
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
›
⌄
with allday_raw_sales as (
select block_timestamp,
tx_id,
--marketplace, --A.4eb8a10cb9f87357.NFTStorefront
--currency, --A.ead892083b3e2c6c.DapperUtilityCoin
nft_id,
buyer,
seller,
price,
tokenflow,
counterparties
from flow.core.ez_nft_sales
where nft_collection = 'A.e4cf4bdc1751c65d.AllDay'
and tx_succeeded = TRUE
)
select block_timestamp::date as fecha,
sum (price) as daily_volume,
count (tx_id) as daily_sales,
sum (daily_volume) over (order by fecha) as acc_volume,
sum (daily_sales) over (order by fecha) as acc_sales
from allday_raw_sales
group by fecha
order by fecha desc
--flow.core.dim_allday_metadata
Run a query to Download Data