UNPKG

@solana/spl-token

Version:
41 lines 2.17 kB
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, payer, account, owner, multiSigners = [], confirmOptions, programId = TOKEN_2022_PROGRAM_ID) { 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, payer, account, owner, multiSigners = [], confirmOptions, programId = TOKEN_2022_PROGRAM_ID) { const [ownerPublicKey, signers] = getSigners(owner, multiSigners); const transaction = new Transaction().add(createDisableCpiGuardInstruction(account, ownerPublicKey, signers, programId)); return await sendAndConfirmTransaction(connection, transaction, [payer, ...signers], confirmOptions); } //# sourceMappingURL=actions.js.map