adriaparcerisas$DUST and DeGods NFT over time
Updated 2023-04-21
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
›
⌄
with degods as (
select
x.purchaser
--count(distinct tx_id) as buys
from solana.core.fact_nft_sales x
join solana.core.dim_nft_metadata y on x.mint = y.mint and y.contract_name = 'DeGods'
where block_timestamp >= '2022-01-01'
and marketplace like '%magic eden%'
)
select
trunc(block_timestamp,'day') as date,
count(distinct swapper) as users,
count(distinct tx_id) as swaps,
sum(swap_to_amount) as volume
from solana.core.fact_swaps
where block_timestamp::date >= '2022-01-01'
and swap_program = 'jupiter aggregator v2'
and succeeded = 'True'
and swap_to_mint = 'DUSTawucrTsGU8hcqRdHDCbuYhCPADMLM2VcCb8VnFnQ'
and swap_to_amount >0
and swapper in (
select
purchaser
from degods
)
group by 1
order by 1 asc
Run a query to Download Data