CryptoIcicleIn the News - 11. New Year, New Activity? Flow - Top 10 Daily Sales
Updated 2023-02-09
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
›
⌄
-- FLOW NFT Ecosystem
-- Happy Flow NFT Day! As part of today’s celebration of FLOW NFTs, we want you to dive deep into the ecosystem.
-- Pay by Quality
-- Your score determines your final payout.
-- Grand Prize 60.485 FLOW (A score of 11 or 12 earns you a Grand Prize title)
-- Payout 40.323 FLOW
-- Score Multiplier0-7 : 0% 8 : 50% 9 : 75% 10 : 100% 11 : 125% 12 : 150%
-- Payout Network Flow
-- Level Intermediate
-- Difficulty Hard
-- Happy Flow NFT Day! As part of today’s celebration of FLOW NFTs, we want you to dive deep into the ecosystem.
-- Treat this as an open analytics bounty specifically focusing on the FLOW ecosystem.
-- Open Analytics (OA) bounties are bounties without specific prompts, just a direction, and a reward.
-- It’s your chance to have your brain follow your heart — got a spark of interest, or a loose thread, or a weirdly-specific question gnawing
-- at the back of your mind? Follow it as far as you can!
with nft_sales as (
select
split(nft_collection,'.')[2] as name,
*
from flow.core.ez_nft_sales
where block_timestamp >= {{start_date}} and block_timestamp <= {{end_date}}
)
select
name,
count(distinct tx_id) as n_txns,
sum(price) as sale_volume,
count(distinct buyer) as n_wallets_daily
from nft_sales
group by name
order by n_txns desc
limit 10
Run a query to Download Data