adriaparcerisasmfl drop 27/11/24 3
Updated 2024-11-28
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
›
⌄
SELECT
trunc(block_timestamp,'minute') as minute,
case when price=9.99 then 'Starter pack'
when price=34.99 then 'Standard pack'
when price=119.99 then 'Rare pack'
--when price=599.99 then 'Legendary pack'
end as type,
COUNT(DISTINCT tx_id) AS packs_sold,
COUNT(DISTINCT buyer) AS users,
SUM(price) AS volume
FROM flow.nft.ez_nft_sales
WHERE nft_collection ilike '%mfl%' and nft_collection ilike '%pack%'
and block_timestamp>='2024-11-27 22:00' and block_timestamp<='2024-11-27 22:13'
group by 1,2
having type is not null
order by 1 asc, 2 asc
QueryRunArchived: QueryRun has been archived