bachihadeswap2
Updated 2023-01-20
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
select date_trunc('week', block_timestamp) as week,
count(distinct tx_id) as no_of_txs,
round(sum(sales_amount),2) as tot_volume,
round(avg(sales_amount),2) as avg_volume,
count(distinct purchaser) as no_of_buyers,
sum(no_of_txs) over (order by week) as cum_txs,
sum(tot_volume) over (order by week) as cum_volume,
sum(no_of_buyers) over (order by week) as cum_buyers
from solana.core.fact_nft_sales
where marketplace = 'hadeswap'
and succeeded = True
group by 1
order by 1 desc
Run a query to Download Data