rakhisanjayaUntitled Query
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
select
sum(sales_amount) as Sol_volume,
avg(sales_amount) as Avg_price,
count(distinct tx_id) as Sales_count,
count(distinct purchaser) as Buyer_count
from solana.core.fact_nft_sales S
join solana.core.dim_labels l on S.mint = l.address
where (address_name ilike 'The Suites'
or address_name ilike 'Collectorz Club: The Collectorz'
or address_name ilike 'Laidback Lions'
or address_name ilike 'Hockey Heroes'
or address_name ilike 'Sports Rewind'
)
and block_timestamp >= '2022-02-01
Run a query to Download Data