@solana/spl-token
Version:
SPL Token Program JS API
38 lines • 2.32 kB
JavaScript
;
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.closeAccount = closeAccount;
const web3_js_1 = require("@solana/web3.js");
const constants_js_1 = require("../constants.js");
const closeAccount_js_1 = require("../instructions/closeAccount.js");
const internal_js_1 = require("./internal.js");
/**
* Close a token account
*
* @param connection Connection to use
* @param payer Payer of the transaction fees
* @param account Account to close
* @param destination Account to receive the remaining balance of the closed account
* @param authority Authority which is allowed to close the account
* @param multiSigners Signing accounts if `authority` is a multisig
* @param confirmOptions Options for confirming the transaction
* @param programId SPL Token program account
*
* @return Signature of the confirmed transaction
*/
function closeAccount(connection_1, payer_1, account_1, destination_1, authority_1) {
return __awaiter(this, arguments, void 0, function* (connection, payer, account, destination, authority, multiSigners = [], confirmOptions, programId = constants_js_1.TOKEN_PROGRAM_ID) {
const [authorityPublicKey, signers] = (0, internal_js_1.getSigners)(authority, multiSigners);
const transaction = new web3_js_1.Transaction().add((0, closeAccount_js_1.createCloseAccountInstruction)(account, destination, authorityPublicKey, multiSigners, programId));
return yield (0, web3_js_1.sendAndConfirmTransaction)(connection, transaction, [payer, ...signers], confirmOptions);
});
}
//# sourceMappingURL=closeAccount.js.map