UNPKG

@solana/spl-token

Version:
83 lines 3.13 kB
import { struct, u8 } from '@solana/buffer-layout'; import { u64 } from '@solana/buffer-layout-utils'; import { TransactionInstruction } from '@solana/web3.js'; import { TOKEN_PROGRAM_ID } from '../constants.js'; import { TokenInvalidInstructionDataError, TokenInvalidInstructionKeysError, TokenInvalidInstructionProgramError, TokenInvalidInstructionTypeError, } from '../errors.js'; import { addSigners } from './internal.js'; import { TokenInstruction } from './types.js'; /** TODO: docs */ export const mintToInstructionData = struct([u8('instruction'), u64('amount')]); /** * Construct a MintTo instruction * * @param mint Public key of the mint * @param destination Address of the token account to mint to * @param authority The mint authority * @param amount Amount to mint * @param multiSigners Signing accounts if `authority` is a multisig * @param programId SPL Token program account * * @return Instruction to add to a transaction */ export function createMintToInstruction(mint, destination, authority, amount, multiSigners = [], programId = TOKEN_PROGRAM_ID) { const keys = addSigners([ { pubkey: mint, isSigner: false, isWritable: true }, { pubkey: destination, isSigner: false, isWritable: true }, ], authority, multiSigners); const data = Buffer.alloc(mintToInstructionData.span); mintToInstructionData.encode({ instruction: TokenInstruction.MintTo, amount: BigInt(amount), }, data); return new TransactionInstruction({ keys, programId, data }); } /** * Decode a MintTo instruction and validate it * * @param instruction Transaction instruction to decode * @param programId SPL Token program account * * @return Decoded, valid instruction */ export function decodeMintToInstruction(instruction, programId = TOKEN_PROGRAM_ID) { if (!instruction.programId.equals(programId)) throw new TokenInvalidInstructionProgramError(); if (instruction.data.length !== mintToInstructionData.span) throw new TokenInvalidInstructionDataError(); const { keys: { mint, destination, authority, multiSigners }, data, } = decodeMintToInstructionUnchecked(instruction); if (data.instruction !== TokenInstruction.MintTo) throw new TokenInvalidInstructionTypeError(); if (!mint || !destination || !authority) throw new TokenInvalidInstructionKeysError(); // TODO: key checks? return { programId, keys: { mint, destination, authority, multiSigners, }, data, }; } /** * Decode a MintTo instruction without validating it * * @param instruction Transaction instruction to decode * * @return Decoded, non-validated instruction */ export function decodeMintToInstructionUnchecked({ programId, keys: [mint, destination, authority, ...multiSigners], data, }) { return { programId, keys: { mint, destination, authority, multiSigners, }, data: mintToInstructionData.decode(data), }; } //# sourceMappingURL=mintTo.js.map