Pmisha-bmlMdxmetadata.
Updated 2022-04-03
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
select
date_trunc('day',block_timestamp) as dt,
case
when program_id='M2mx93ekt1fmXSVkTrUL9xVFHkmME8HTUi5Cyc5aF7K' then 'Magic Eden'
when program_id='SPf5WqNywtPrRXSU5enq5z9bPPhREaSYf2LhN5fUxcj' then 'Solport'
end as market,
count(tx_id) as no_sale,
sum(sales_amount) as volume_sale,
count(distinct purchaser) as unq_wllts
from solana.fact_nft_sales
where dt>='2022-03-12'
and mint in (select mint from solana.dim_nft_metadata where contract_name='Taiyo Robotics')
and succeeded='TRUE'
group by 1,2 having market is not null
Run a query to Download Data