/** * This code was AUTOGENERATED using the codama library. * Please DO NOT EDIT THIS FILE, instead use visitors * to add features, then rerun codama to update it. * * @see https://github.com/codama-idl/codama */ import { AccountRole, combineCodec, getStructDecoder, getStructEncoder, getU64Decoder, getU64Encoder, getU8Decoder, getU8Encoder, transformEncoder, type AccountMeta, type AccountSignerMeta, type Address, type FixedSizeCodec, type FixedSizeDecoder, type FixedSizeEncoder, type Instruction, type InstructionWithAccounts, type InstructionWithData, type ReadonlyAccount, type ReadonlySignerAccount, type ReadonlyUint8Array, type TransactionSigner, type WritableAccount, } from '@solana/kit'; import { TOKEN_PROGRAM_ADDRESS } from '../programs'; import { getAccountMetaFactory, type ResolvedAccount } from '../shared'; export const TRANSFER_DISCRIMINATOR = 3; export function getTransferDiscriminatorBytes() { return getU8Encoder().encode(TRANSFER_DISCRIMINATOR); } export type TransferInstruction< TProgram extends string = typeof TOKEN_PROGRAM_ADDRESS, TAccountSource extends string | AccountMeta = string, TAccountDestination extends string | AccountMeta = string, TAccountAuthority extends string | AccountMeta = string, TRemainingAccounts extends readonly AccountMeta[] = [], > = Instruction & InstructionWithData & InstructionWithAccounts< [ TAccountSource extends string ? WritableAccount : TAccountSource, TAccountDestination extends string ? WritableAccount : TAccountDestination, TAccountAuthority extends string ? ReadonlyAccount : TAccountAuthority, ...TRemainingAccounts, ] >; export type TransferInstructionData = { discriminator: number; /** The amount of tokens to transfer. */ amount: bigint; }; export type TransferInstructionDataArgs = { /** The amount of tokens to transfer. */ amount: number | bigint; }; export function getTransferInstructionDataEncoder(): FixedSizeEncoder { return transformEncoder( getStructEncoder([ ['discriminator', getU8Encoder()], ['amount', getU64Encoder()], ]), (value) => ({ ...value, discriminator: TRANSFER_DISCRIMINATOR }) ); } export function getTransferInstructionDataDecoder(): FixedSizeDecoder { return getStructDecoder([ ['discriminator', getU8Decoder()], ['amount', getU64Decoder()], ]); } export function getTransferInstructionDataCodec(): FixedSizeCodec< TransferInstructionDataArgs, TransferInstructionData > { return combineCodec( getTransferInstructionDataEncoder(), getTransferInstructionDataDecoder() ); } export type TransferInput< TAccountSource extends string = string, TAccountDestination extends string = string, TAccountAuthority extends string = string, > = { /** The source account. */ source: Address; /** The destination account. */ destination: Address; /** The source account's owner/delegate or its multisignature account. */ authority: Address | TransactionSigner; amount: TransferInstructionDataArgs['amount']; multiSigners?: Array; }; export function getTransferInstruction< TAccountSource extends string, TAccountDestination extends string, TAccountAuthority extends string, TProgramAddress extends Address = typeof TOKEN_PROGRAM_ADDRESS, >( input: TransferInput, config?: { programAddress?: TProgramAddress } ): TransferInstruction< TProgramAddress, TAccountSource, TAccountDestination, (typeof input)['authority'] extends TransactionSigner ? ReadonlySignerAccount & AccountSignerMeta : TAccountAuthority > { // Program address. const programAddress = config?.programAddress ?? TOKEN_PROGRAM_ADDRESS; // Original accounts. const originalAccounts = { source: { value: input.source ?? null, isWritable: true }, destination: { value: input.destination ?? null, isWritable: true }, authority: { value: input.authority ?? null, isWritable: false }, }; const accounts = originalAccounts as Record< keyof typeof originalAccounts, ResolvedAccount >; // Original args. const args = { ...input }; // Remaining accounts. const remainingAccounts: AccountMeta[] = (args.multiSigners ?? []).map( (signer) => ({ address: signer.address, role: AccountRole.READONLY_SIGNER, signer, }) ); const getAccountMeta = getAccountMetaFactory(programAddress, 'programId'); const instruction = { accounts: [ getAccountMeta(accounts.source), getAccountMeta(accounts.destination), getAccountMeta(accounts.authority), ...remainingAccounts, ], programAddress, data: getTransferInstructionDataEncoder().encode( args as TransferInstructionDataArgs ), } as TransferInstruction< TProgramAddress, TAccountSource, TAccountDestination, (typeof input)['authority'] extends TransactionSigner ? ReadonlySignerAccount & AccountSignerMeta : TAccountAuthority >; return instruction; } export type ParsedTransferInstruction< TProgram extends string = typeof TOKEN_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[], > = { programAddress: Address; accounts: { /** The source account. */ source: TAccountMetas[0]; /** The destination account. */ destination: TAccountMetas[1]; /** The source account's owner/delegate or its multisignature account. */ authority: TAccountMetas[2]; }; data: TransferInstructionData; }; export function parseTransferInstruction< TProgram extends string, TAccountMetas extends readonly AccountMeta[], >( instruction: Instruction & InstructionWithAccounts & InstructionWithData ): ParsedTransferInstruction { if (instruction.accounts.length < 3) { // TODO: Coded error. throw new Error('Not enough accounts'); } let accountIndex = 0; const getNextAccount = () => { const accountMeta = (instruction.accounts as TAccountMetas)[accountIndex]!; accountIndex += 1; return accountMeta; }; return { programAddress: instruction.programAddress, accounts: { source: getNextAccount(), destination: getNextAccount(), authority: getNextAccount(), }, data: getTransferInstructionDataDecoder().decode(instruction.data), }; }