Sandeshnfts requested
Updated 2023-02-25
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
›
⌄
with trades as
(
select
block_timestamp ,
tx_id,
signers[0] as user,
parse_json(post_token_balances[0]):"mint" as nft,
log_messages[1] as act,
case when block_timestamp::date <= '2023-02-06' then 'phase 1'
when block_timestamp::date >= '2023-02-13' then 'phase 2'
else 'other'
end as phase
from solana.core.fact_transactions
where 1=1
-- and tx_id='3H6vcnwGKyJgkALQy2oTnwk6TmJ3pXXip33vv5GzUa7y9C4NR55xYNBwronw19PAQbEcwqS5hJ4KpRmD6uSqHQrG'
and instructions[0]:"programId"='8NvmvWEAw89HnE8Gjo4kHhbHy2PGyeuU9y9QJ1HKiLoR'
and block_timestamp::date between '2023-01-25' and '2023-02-20'
-- and block_timestamp > CURRENT_DATE - interval ' 1 month'
and act='Program log: Instruction: InitializeCollectionConfig'
)
select
trades.*,
nft_data.contract_name
from trades inner join solana.core.dim_nft_metadata nft_data
on trades.nft = nft_data.mint
-- where phase = 'phase 1'
Run a query to Download Data