andurilMetaplex Deployers Mega - Optimized
Updated 2024-10-09
999
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
29
30
31
32
33
34
35
36
›
⌄
with metaplex_txs as (
select
e.program_id,
t.block_timestamp,
t.signers[0] as wallet,
t.tx_id,
t.instructions,
t.inner_instructions,
t.log_messages
from
solana.core.fact_transactions t
inner join
solana.core.fact_events e
on e.tx_id = t.tx_id
where
date(t.block_timestamp) between current_date()-31 and current_date()-1 and
e.succeeded = 'TRUE' and
e.program_id IN
('qntmGodpGkrM42mN68VCZHXnKqDCT8rdY23wFcXCLPd',
'gdrpGjVffourzkdDRrQmySw4aTHr8a3xmQzzxSwFD1a',
--'faircnAB9k59Y4TXmLabBULeuTLgV7TkGMGNkjnA15j',
'hausS13jsjafwWwGqZTUQRmWyvyxn9EQpqMwV1PBBmk',
--'cndyAnrLdpjq1Ssp1z8xxDsB8dxe7u4HL5Nxi2K5WXZ',
'cndy3Z4yapfJBmL3ShUp5exZKqR3z33thTzeNMm2gRZ')
)
,
cndy_v2_deployers as
(
select
t.block_timestamp,
QueryRunArchived: QueryRun has been archived