/** * 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/kinobi-so/kinobi */ import { combineCodec, getAddressDecoder, getAddressEncoder, getStructDecoder, getStructEncoder, getU8Decoder, getU8Encoder, transformEncoder, type Address, type Codec, type Decoder, type Encoder, type IAccountMeta, type IInstruction, type IInstructionWithAccounts, type IInstructionWithData, type ReadonlyAccount, type WritableAccount, } from '@solana/web3.js'; import { TOKEN_PROGRAM_ADDRESS } from '../programs'; import { getAccountMetaFactory, type ResolvedAccount } from '../shared'; export const INITIALIZE_ACCOUNT2_DISCRIMINATOR = 16; export function getInitializeAccount2DiscriminatorBytes() { return getU8Encoder().encode(INITIALIZE_ACCOUNT2_DISCRIMINATOR); } export type InitializeAccount2Instruction< TProgram extends string = typeof TOKEN_PROGRAM_ADDRESS, TAccountAccount extends string | IAccountMeta = string, TAccountMint extends string | IAccountMeta = string, TAccountRent extends | string | IAccountMeta = 'SysvarRent111111111111111111111111111111111', TRemainingAccounts extends readonly IAccountMeta[] = [], > = IInstruction & IInstructionWithData & IInstructionWithAccounts< [ TAccountAccount extends string ? WritableAccount : TAccountAccount, TAccountMint extends string ? ReadonlyAccount : TAccountMint, TAccountRent extends string ? ReadonlyAccount : TAccountRent, ...TRemainingAccounts, ] >; export type InitializeAccount2InstructionData = { discriminator: number; /** The new account's owner/multisignature. */ owner: Address; }; export type InitializeAccount2InstructionDataArgs = { /** The new account's owner/multisignature. */ owner: Address; }; export function getInitializeAccount2InstructionDataEncoder(): Encoder { return transformEncoder( getStructEncoder([ ['discriminator', getU8Encoder()], ['owner', getAddressEncoder()], ]), (value) => ({ ...value, discriminator: INITIALIZE_ACCOUNT2_DISCRIMINATOR }) ); } export function getInitializeAccount2InstructionDataDecoder(): Decoder { return getStructDecoder([ ['discriminator', getU8Decoder()], ['owner', getAddressDecoder()], ]); } export function getInitializeAccount2InstructionDataCodec(): Codec< InitializeAccount2InstructionDataArgs, InitializeAccount2InstructionData > { return combineCodec( getInitializeAccount2InstructionDataEncoder(), getInitializeAccount2InstructionDataDecoder() ); } export type InitializeAccount2Input< TAccountAccount extends string = string, TAccountMint extends string = string, TAccountRent extends string = string, > = { /** The account to initialize. */ account: Address; /** The mint this account will be associated with. */ mint: Address; /** Rent sysvar. */ rent?: Address; owner: InitializeAccount2InstructionDataArgs['owner']; }; export function getInitializeAccount2Instruction< TAccountAccount extends string, TAccountMint extends string, TAccountRent extends string, TProgramAddress extends Address = typeof TOKEN_PROGRAM_ADDRESS, >( input: InitializeAccount2Input, config?: { programAddress?: TProgramAddress } ): InitializeAccount2Instruction< TProgramAddress, TAccountAccount, TAccountMint, TAccountRent > { // Program address. const programAddress = config?.programAddress ?? TOKEN_PROGRAM_ADDRESS; // Original accounts. const originalAccounts = { account: { value: input.account ?? null, isWritable: true }, mint: { value: input.mint ?? null, isWritable: false }, rent: { value: input.rent ?? null, isWritable: false }, }; const accounts = originalAccounts as Record< keyof typeof originalAccounts, ResolvedAccount >; // Original args. const args = { ...input }; // Resolve default values. if (!accounts.rent.value) { accounts.rent.value = 'SysvarRent111111111111111111111111111111111' as Address<'SysvarRent111111111111111111111111111111111'>; } const getAccountMeta = getAccountMetaFactory(programAddress, 'programId'); const instruction = { accounts: [ getAccountMeta(accounts.account), getAccountMeta(accounts.mint), getAccountMeta(accounts.rent), ], programAddress, data: getInitializeAccount2InstructionDataEncoder().encode( args as InitializeAccount2InstructionDataArgs ), } as InitializeAccount2Instruction< TProgramAddress, TAccountAccount, TAccountMint, TAccountRent >; return instruction; } export type ParsedInitializeAccount2Instruction< TProgram extends string = typeof TOKEN_PROGRAM_ADDRESS, TAccountMetas extends readonly IAccountMeta[] = readonly IAccountMeta[], > = { programAddress: Address; accounts: { /** The account to initialize. */ account: TAccountMetas[0]; /** The mint this account will be associated with. */ mint: TAccountMetas[1]; /** Rent sysvar. */ rent: TAccountMetas[2]; }; data: InitializeAccount2InstructionData; }; export function parseInitializeAccount2Instruction< TProgram extends string, TAccountMetas extends readonly IAccountMeta[], >( instruction: IInstruction & IInstructionWithAccounts & IInstructionWithData ): ParsedInitializeAccount2Instruction { if (instruction.accounts.length < 3) { // TODO: Coded error. throw new Error('Not enough accounts'); } let accountIndex = 0; const getNextAccount = () => { const accountMeta = instruction.accounts![accountIndex]!; accountIndex += 1; return accountMeta; }; return { programAddress: instruction.programAddress, accounts: { account: getNextAccount(), mint: getNextAccount(), rent: getNextAccount(), }, data: getInitializeAccount2InstructionDataDecoder().decode( instruction.data ), }; }