Pmisha-bmlMdxflow.1
Updated 2022-06-06
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
select
date(BLOCK_TIMESTAMP) as dt,
sum(price) as sale_vol,
count(tx_id) as sale_no,
count (distinct BUYER) as buyers,
count(distinct SELLER) as sellers,
buyers+sellers as trader
from flow.core.fact_nft_sales
where MARKETPLACE='A.c1e4f4f4c4257510.TopShotMarketV3'
and BLOCK_TIMESTAMP>='2022-05-09'
and TX_SUCCEEDED='TRUE'
group by 1
order by 1
Run a query to Download Data