winnie-fsArea Chart Bug
Updated 2023-03-24
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
29
30
31
32
33
34
35
36
›
⌄
-- forked from 2cfd1a35-ecb8-4569-88f4-20c2bff57250
-- forked from f73fa1f1-672f-40b1-b066-55315b0c6f1a
with
top_collections as (
select
project_name as "Collection",
count(distinct tx_hash) as "Number of Sales",
sum(price_usd) as "Total Sales ($)"
from
ethereum.core.ez_nft_sales
where
block_timestamp::date >= '2022-10-19' -- blur launch
and project_name is not NULL
group by
project_name
order by
"Total Sales ($)" desc,
"Number of Sales" desc
limit
15
)
select
BLOCK_TIMESTAMP::date as date,
'{{Collection}}' as collection,
platform_name,
count(distinct tx_hash) as tx_count,
avg(tx_count) OVER (
ORDER BY DATE ROWS BETWEEN 7 PRECEDING AND CURRENT ROW
) as "Rolling Avg 7d: tx_count",
sum(price) as total_sales,
sum(price_usd) as total_sales_usd,
sum(platform_fee) as total_platform_fee,
sum(platform_fee_usd) as total_platform_fee_usd,
sum(creator_fee) as total_creator_fee,
Run a query to Download Data