Created
April 9, 2025 16:46
-
-
Save mgild/10b36e642eb4422bab8d7539ac887894 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WITH instruction_accounts AS ( | |
SELECT DISTINCT | |
i.tx_id, | |
i.tx_signer, | |
account | |
FROM | |
solana.instruction_calls i | |
CROSS JOIN UNNEST(i.account_arguments) AS t(account) | |
WHERE | |
i.tx_signer != account | |
AND i.executing_account = 'SBondMDrcV3K4kxZR1HNVT7osZxAHVHgYXL5Ze1oMUv' | |
AND i.block_time > NOW() - INTERVAL '90' day | |
AND account NOT IN ( | |
'SysvarS1otHashes111111111111111111111111111', | |
'11111111111111111111111111111111', | |
'So11111111111111111111111111111111111111112', | |
'TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA', | |
'Sysvar1nstructions1111111111111111111111111', | |
'ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL', | |
'AddressLookupTab1e1111111111111111111111111' | |
) | |
), |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment