Specter creator minter
Updated 2024-11-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
›
⌄
with moonfun AS (
SELECT tx_id, instruction:parsed:info:mintAuthority AS creator,
instruction:parsed:info:mint AS token,
instruction:parsed:info:amount / 1e9 AS amounts
FROM eclipse.core.fact_events
WHERE tx_id IN (SELECT tx_id
FROM eclipse.core.fact_events_inner
WHERE event_type = 'initializeImmutableOwner'
--and tx_id = '22a4JDLHttCcTxP4b1Bgv4Y26m2sa4qjxxXS8eDKspHrD4Y1RPzXiSjuFEYnHNU1zRZzmaQrFTZpvR294cmo7xfe'
and instruction_program_id = 'F3MQq5eugYvhUJqnRruvyv3tu7nsVBgXxJrsaKfLhRDL'
)
AND program_id = 'TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA'
AND instruction:parsed:type = 'mintTo'
AND instruction:parsed:info:amount = '1000000000000000000'
and block_timestamp >= '2024-11-18'
AND succeeded = 'TRUE'
)
SELECT creator,
COUNT(tx_id) AS mint_count
FROM moonfun
GROUP BY creator
ORDER BY mint_count DESC
QueryRunArchived: QueryRun has been archived