Pmisha-bmlMdxdate
Updated 2022-05-03
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
›
⌄
with tt as(with nft as(select block_timestamp,
b.PROJECT_NAME as nft,
sum(sales_amount) as total_sale,
count(tx_id) as usages,
total_sale/usages as average_sale
from solana.fact_nft_sales s LEFT OUTER JOIN solana.dim_nft_metadata b ON s.mint = b.mint
--where marketplace in ('magic eden v1','magic eden v2','solana monkey business marketplace')
-- and nft in ('DeGods','Degen Ape Academy','Shadowy Super Coders')
and succeeded='TRUE'
group by 1,2 having nft is not null
)
select
nft,
lag(block_timestamp, 1) ignore nulls over (order by block_timestamp asc) as date_buy,
datediff('day',date_buy, block_timestamp)as holds
from nft group by 1,block_timestamp)
select nft , avg(holds) * 10000 as average_day from tt group by 1
Run a query to Download Data