MLDZMNwhale behavior
Updated 2022-06-10Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
with tb1 as (select
distinct BUYER as TS_address,
count(TX_ID) as number_bought
from flow.core.fact_nft_sales
where TX_SUCCEEDED='TRUE'
and tx_id is not NULL
group by 1 having number_bought>100)
select
NFT_COLLECTION,
count(distinct buyer) as number_whales
from flow.core.fact_nft_sales
where TX_SUCCEEDED='TRUE'
and tx_id is not NULL
and buyer in (select TS_address from tb1)
group by 1
Run a query to Download Data