UNPKG

@solana/spl-token

Version:
68 lines (61 loc) 2.56 kB
import type { ConfirmOptions, Connection, PublicKey, Signer, TransactionSignature } from '@solana/web3.js'; import { sendAndConfirmTransaction, Transaction } from '@solana/web3.js'; import { getSigners } from '../../actions/internal.js'; import { TOKEN_2022_PROGRAM_ID } from '../../constants.js'; import { createDisableCpiGuardInstruction, createEnableCpiGuardInstruction } from './instructions.js'; /** * Enable CPI Guard on the given account * * @param connection Connection to use * @param payer Payer of the transaction fees * @param account Account to modify * @param owner Owner of the account * @param multiSigners Signing accounts if `owner` is a multisig * @param confirmOptions Options for confirming the transaction * @param programId SPL Token program account * * @return Signature of the confirmed transaction */ export async function enableCpiGuard( connection: Connection, payer: Signer, account: PublicKey, owner: Signer | PublicKey, multiSigners: Signer[] = [], confirmOptions?: ConfirmOptions, programId = TOKEN_2022_PROGRAM_ID, ): Promise<TransactionSignature> { const [ownerPublicKey, signers] = getSigners(owner, multiSigners); const transaction = new Transaction().add( createEnableCpiGuardInstruction(account, ownerPublicKey, signers, programId), ); return await sendAndConfirmTransaction(connection, transaction, [payer, ...signers], confirmOptions); } /** * Disable CPI Guard on the given account * * @param connection Connection to use * @param payer Payer of the transaction fees * @param account Account to modify * @param owner Owner of the account * @param multiSigners Signing accounts if `owner` is a multisig * @param confirmOptions Options for confirming the transaction * @param programId SPL Token program account * * @return Signature of the confirmed transaction */ export async function disableCpiGuard( connection: Connection, payer: Signer, account: PublicKey, owner: Signer | PublicKey, multiSigners: Signer[] = [], confirmOptions?: ConfirmOptions, programId = TOKEN_2022_PROGRAM_ID, ): Promise<TransactionSignature> { const [ownerPublicKey, signers] = getSigners(owner, multiSigners); const transaction = new Transaction().add( createDisableCpiGuardInstruction(account, ownerPublicKey, signers, programId), ); return await sendAndConfirmTransaction(connection, transaction, [payer, ...signers], confirmOptions); }