adriaparcerisasmfl drop 19/2/25 2
Updated 2025-02-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
›
⌄
with
debut as (
select min(block_timestamp) as debut
FROM flow.nft.ez_nft_sales
WHERE nft_collection ilike '%mfl%' and nft_collection ilike '%pack%'
and block_timestamp>='2025-02-01 22:00'
)
SELECT
TRUNC(block_timestamp, 'hour') AS hour,
case when block_timestamp>='2025-02-19 22:00' then 'After Drop Day 2/19/25'
else 'Before Drop Days' end as period,
nft_collection as type,
COUNT(DISTINCT buyer) AS users,
SUM(price) AS volume,
COUNT(DISTINCT tx_id) AS sales,
AVG(price) AS avg_sales_price,
MIN(price) AS min_price,
MAX(price) AS max_price
FROM flow.nft.ez_nft_sales
WHERE nft_collection ilike '%mfl%'
and nft_collection not ilike '%pack%'
and block_timestamp>=current_date-interval '1 week'
GROUP BY 1,2,3 order by 1 desc, 2 asc
QueryRunArchived: QueryRun has been archived