UNPKG

@kamino-finance/kliquidity-sdk

Version:

Typescript SDK for interacting with the Kamino Liquidity (kliquidity) protocol

80 lines (63 loc) 6.14 kB
/** * 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 { combineCodec, fixDecoderSize, fixEncoderSize, getBytesDecoder, getBytesEncoder, getStructDecoder, getStructEncoder, transformEncoder, type AccountMeta, type AccountSignerMeta, type Address, type FixedSizeCodec, type FixedSizeDecoder, type FixedSizeEncoder, type Instruction, type InstructionWithAccounts, type InstructionWithData, type ReadonlyAccount, type ReadonlyUint8Array, type TransactionSigner, type WritableAccount, type WritableSignerAccount } from '@solana/kit'; import { YVAULTS_PROGRAM_ADDRESS } from '../programs'; import { getAccountMetaFactory, type ResolvedAccount } from '../shared'; export const INITIALIZE_GLOBAL_CONFIG_DISCRIMINATOR = new Uint8Array([113, 216, 122, 131, 225, 209, 22, 55]); export function getInitializeGlobalConfigDiscriminatorBytes() { return fixEncoderSize(getBytesEncoder(), 8).encode(INITIALIZE_GLOBAL_CONFIG_DISCRIMINATOR); } export type InitializeGlobalConfigInstruction<TProgram extends string = typeof YVAULTS_PROGRAM_ADDRESS, TAccountAdminAuthority extends string | AccountMeta<string> = string, TAccountGlobalConfig extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111", TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[TAccountAdminAuthority extends string ? WritableSignerAccount<TAccountAdminAuthority> & AccountSignerMeta<TAccountAdminAuthority> : TAccountAdminAuthority, TAccountGlobalConfig extends string ? WritableAccount<TAccountGlobalConfig> : TAccountGlobalConfig, TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram, ...TRemainingAccounts]>; export type InitializeGlobalConfigInstructionData = { discriminator: ReadonlyUint8Array; }; export type InitializeGlobalConfigInstructionDataArgs = { }; export function getInitializeGlobalConfigInstructionDataEncoder(): FixedSizeEncoder<InitializeGlobalConfigInstructionDataArgs> { return transformEncoder(getStructEncoder([['discriminator', fixEncoderSize(getBytesEncoder(), 8)]]), (value) => ({ ...value, discriminator: INITIALIZE_GLOBAL_CONFIG_DISCRIMINATOR })); } export function getInitializeGlobalConfigInstructionDataDecoder(): FixedSizeDecoder<InitializeGlobalConfigInstructionData> { return getStructDecoder([['discriminator', fixDecoderSize(getBytesDecoder(), 8)]]); } export function getInitializeGlobalConfigInstructionDataCodec(): FixedSizeCodec<InitializeGlobalConfigInstructionDataArgs, InitializeGlobalConfigInstructionData> { return combineCodec(getInitializeGlobalConfigInstructionDataEncoder(), getInitializeGlobalConfigInstructionDataDecoder()); } export type InitializeGlobalConfigInput<TAccountAdminAuthority extends string = string, TAccountGlobalConfig extends string = string, TAccountSystemProgram extends string = string> = { adminAuthority: TransactionSigner<TAccountAdminAuthority>; globalConfig: Address<TAccountGlobalConfig>; systemProgram?: Address<TAccountSystemProgram>; } export function getInitializeGlobalConfigInstruction<TAccountAdminAuthority extends string, TAccountGlobalConfig extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof YVAULTS_PROGRAM_ADDRESS>(input: InitializeGlobalConfigInput<TAccountAdminAuthority, TAccountGlobalConfig, TAccountSystemProgram>, config?: { programAddress?: TProgramAddress } ): InitializeGlobalConfigInstruction<TProgramAddress, TAccountAdminAuthority, TAccountGlobalConfig, TAccountSystemProgram> { // Program address. const programAddress = config?.programAddress ?? YVAULTS_PROGRAM_ADDRESS; // Original accounts. const originalAccounts = { adminAuthority: { value: input.adminAuthority ?? null, isWritable: true }, globalConfig: { value: input.globalConfig ?? null, isWritable: true }, systemProgram: { value: input.systemProgram ?? null, isWritable: false } } const accounts = originalAccounts as Record<keyof typeof originalAccounts, ResolvedAccount>; // Resolve default values. if (!accounts.systemProgram.value) { accounts.systemProgram.value = '11111111111111111111111111111111' as Address<'11111111111111111111111111111111'>; } const getAccountMeta = getAccountMetaFactory(programAddress, 'programId'); return Object.freeze({ accounts: [getAccountMeta(accounts.adminAuthority), getAccountMeta(accounts.globalConfig), getAccountMeta(accounts.systemProgram)], data: getInitializeGlobalConfigInstructionDataEncoder().encode({}), programAddress } as InitializeGlobalConfigInstruction<TProgramAddress, TAccountAdminAuthority, TAccountGlobalConfig, TAccountSystemProgram>); } export type ParsedInitializeGlobalConfigInstruction<TProgram extends string = typeof YVAULTS_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = { programAddress: Address<TProgram>; accounts: { adminAuthority: TAccountMetas[0]; globalConfig: TAccountMetas[1]; systemProgram: TAccountMetas[2]; }; data: InitializeGlobalConfigInstructionData; }; export function parseInitializeGlobalConfigInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedInitializeGlobalConfigInstruction<TProgram, TAccountMetas> { 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: { adminAuthority: getNextAccount(), globalConfig: getNextAccount(), systemProgram: getNextAccount() }, data: getInitializeGlobalConfigInstructionDataDecoder().decode(instruction.data) }; }