UNPKG

@metaplex-foundation/mpl-toolbox

Version:

Auto-generated essential Solana and Metaplex programs

46 lines 2.22 kB
"use strict"; /** * 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.approveTokenDelegate = exports.getApproveTokenDelegateInstructionDataSerializer = void 0; const umi_1 = require("@metaplex-foundation/umi"); const serializers_1 = require("@metaplex-foundation/umi/serializers"); const shared_1 = require("../shared"); function getApproveTokenDelegateInstructionDataSerializer() { return (0, serializers_1.mapSerializer)((0, serializers_1.struct)([ ['discriminator', (0, serializers_1.u8)()], ['amount', (0, serializers_1.u64)()], ], { description: 'ApproveTokenDelegateInstructionData' }), (value) => ({ ...value, discriminator: 4 })); } exports.getApproveTokenDelegateInstructionDataSerializer = getApproveTokenDelegateInstructionDataSerializer; // Instruction. function approveTokenDelegate(context, input) { // Program ID. const programId = context.programs.getPublicKey('splToken', 'TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA'); // Accounts. const resolvedAccounts = { source: { index: 0, isWritable: true, value: input.source ?? null }, delegate: { index: 1, isWritable: false, value: input.delegate ?? null }, owner: { index: 2, isWritable: false, value: input.owner ?? null }, }; // Arguments. const resolvedArgs = { ...input }; // 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 = getApproveTokenDelegateInstructionDataSerializer().serialize(resolvedArgs); // Bytes Created On Chain. const bytesCreatedOnChain = 0; return (0, umi_1.transactionBuilder)([ { instruction: { keys, programId, data }, signers, bytesCreatedOnChain }, ]); } exports.approveTokenDelegate = approveTokenDelegate; //# sourceMappingURL=approveTokenDelegate.js.map