Sandeshabc sellers
Updated 2023-02-25
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
›
⌄
with abc_sellers AS
(
select block_timestamp, tx_id,SELLER from solana.core.fact_nft_sales
where mint in (select mint from solana.core.dim_nft_metadata where project_name = 'ABC' )
and block_timestamp > current_date - interval ' 2 month'
),
underworld_sellers as
(
select block_timestamp,tx_id,seller from solana.core.fact_nft_sales
where mint in ( select address from solana.core.dim_labels where address_name='underworld_nft' )
),
temp as
(
select u.* from abc_sellers a inner join
underworld_sellers u
on (a.seller=u.seller and a.block_timestamp<u.block_timestamp)
-- qualify
)-- limit 5
select block_timestamp::date as "date", count(distinct tx_id) from temp group by 1
Run a query to Download Data