mirror of
https://github.com/tymur999/sol-incinerator-oss.git
synced 2025-08-03 15:20:36 +00:00
75 lines
2.2 KiB
TypeScript
75 lines
2.2 KiB
TypeScript
import {Config} from "./config";
|
|
import {ComputeBudgetProgram, TransactionMessage, VersionedTransaction} from "@solana/web3.js";
|
|
import {createCloseAccountInstruction, TOKEN_PROGRAM_ID} from "@solana/spl-token";
|
|
import bs58 from "bs58";
|
|
|
|
const blacklist = [
|
|
"EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm",
|
|
"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
|
|
];
|
|
|
|
(async function close_atas() {
|
|
const atas = await Config.connection.getParsedTokenAccountsByOwner(Config.solWallet.publicKey, {
|
|
programId: TOKEN_PROGRAM_ID
|
|
});
|
|
|
|
const inst = [
|
|
ComputeBudgetProgram.setComputeUnitPrice({microLamports: 1000}),
|
|
ComputeBudgetProgram.setComputeUnitLimit({units: 45000})
|
|
];
|
|
|
|
const block = await Config.connection.getLatestBlockhash({commitment: "processed"});
|
|
for(const ata of atas.value.slice(0, 15)) {
|
|
const data = (<TokenAccountData> ata.account.data.parsed).info;
|
|
if(blacklist.includes(data.mint)) continue;
|
|
if(data.tokenAmount.amount != "0") {
|
|
console.log("Skipping", data.mint);
|
|
continue;
|
|
}
|
|
console.log("mint:", data.mint)
|
|
|
|
inst.push(
|
|
createCloseAccountInstruction(
|
|
ata.pubkey,
|
|
Config.solWallet.publicKey,
|
|
Config.solWallet.publicKey
|
|
)
|
|
);
|
|
}
|
|
|
|
const txn = new VersionedTransaction(new TransactionMessage({
|
|
instructions: inst,
|
|
payerKey: Config.solWallet.publicKey,
|
|
recentBlockhash: block.blockhash
|
|
}).compileToV0Message());
|
|
txn.sign([Config.solWallet.payer]);
|
|
let sig = bs58.encode(txn.signatures[0]);
|
|
|
|
await Config.connection.sendTransaction(txn, {
|
|
preflightCommitment: "processed",
|
|
skipPreflight: false,
|
|
maxRetries: 10
|
|
});
|
|
|
|
let res = await Config.connection.confirmTransaction({
|
|
...block,
|
|
signature: sig
|
|
}, "processed");
|
|
if(!res.value.err)
|
|
console.log("14 token accounts successfully closed");
|
|
})();
|
|
|
|
interface TokenAccountData {
|
|
info: {
|
|
isNative: boolean,
|
|
mint: string,
|
|
owner: string,
|
|
state: string,
|
|
tokenAmount: {
|
|
amount: string,
|
|
decimals: number,
|
|
uiAmount: number,
|
|
uiAmountString: string
|
|
}
|
|
}
|
|
} |