@metaplex-foundation/mpl-toolbox
Version:
Auto-generated essential Solana and Metaplex programs
43 lines • 1.98 kB
JavaScript
/**
* This code was AUTOGENERATED using the kinobi library.
* Please DO NOT EDIT THIS FILE, instead use visitors
* to add features, then rerun kinobi to update it.
*
* @see https://github.com/metaplex-foundation/kinobi
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.thawToken = exports.getThawTokenInstructionDataSerializer = void 0;
const umi_1 = require("@metaplex-foundation/umi");
const serializers_1 = require("@metaplex-foundation/umi/serializers");
const shared_1 = require("../shared");
function getThawTokenInstructionDataSerializer() {
return (0, serializers_1.mapSerializer)((0, serializers_1.struct)([['discriminator', (0, serializers_1.u8)()]], {
description: 'ThawTokenInstructionData',
}), (value) => ({ ...value, discriminator: 11 }));
}
exports.getThawTokenInstructionDataSerializer = getThawTokenInstructionDataSerializer;
// Instruction.
function thawToken(context, input) {
// Program ID.
const programId = context.programs.getPublicKey('splToken', 'TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA');
// Accounts.
const resolvedAccounts = {
account: { index: 0, isWritable: true, value: input.account ?? null },
mint: { index: 1, isWritable: false, value: input.mint ?? null },
owner: { index: 2, isWritable: false, value: input.owner ?? null },
};
// Accounts in order.
const orderedAccounts = Object.values(resolvedAccounts).sort((a, b) => a.index - b.index);
// Keys and Signers.
const [keys, signers] = (0, shared_1.getAccountMetasAndSigners)(orderedAccounts, 'programId', programId);
// Data.
const data = getThawTokenInstructionDataSerializer().serialize({});
// Bytes Created On Chain.
const bytesCreatedOnChain = 0;
return (0, umi_1.transactionBuilder)([
{ instruction: { keys, programId, data }, signers, bytesCreatedOnChain },
]);
}
exports.thawToken = thawToken;
//# sourceMappingURL=thawToken.js.map
;