/** * 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 { 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 { VOLTR_VAULT_PROGRAM_ADDRESS } from "../programs"; export declare const CALIBRATE_HIGH_WATER_MARK_UNSAFE_DISCRIMINATOR: Uint8Array; export declare function getCalibrateHighWaterMarkUnsafeDiscriminatorBytes(): ReadonlyUint8Array; export type CalibrateHighWaterMarkUnsafeInstruction = string, TAccountProtocol extends string | AccountMeta = string, TAccountVault extends string | AccountMeta = string, TAccountVaultLpMint extends string | AccountMeta = string, TRemainingAccounts extends readonly AccountMeta[] = []> = Instruction & InstructionWithData & InstructionWithAccounts<[ TAccountAdmin extends string ? ReadonlySignerAccount & AccountSignerMeta : TAccountAdmin, TAccountProtocol extends string ? ReadonlyAccount : TAccountProtocol, TAccountVault extends string ? WritableAccount : TAccountVault, TAccountVaultLpMint extends string ? WritableAccount : TAccountVaultLpMint, ...TRemainingAccounts ]>; export type CalibrateHighWaterMarkUnsafeInstructionData = { discriminator: ReadonlyUint8Array; }; export type CalibrateHighWaterMarkUnsafeInstructionDataArgs = {}; export declare function getCalibrateHighWaterMarkUnsafeInstructionDataEncoder(): FixedSizeEncoder; export declare function getCalibrateHighWaterMarkUnsafeInstructionDataDecoder(): FixedSizeDecoder; export declare function getCalibrateHighWaterMarkUnsafeInstructionDataCodec(): FixedSizeCodec; export type CalibrateHighWaterMarkUnsafeAsyncInput = { admin: TransactionSigner; protocol?: Address; vault: Address; vaultLpMint?: Address; }; export declare function getCalibrateHighWaterMarkUnsafeInstructionAsync(input: CalibrateHighWaterMarkUnsafeAsyncInput, config?: { programAddress?: TProgramAddress; }): Promise>; export type CalibrateHighWaterMarkUnsafeInput = { admin: TransactionSigner; protocol: Address; vault: Address; vaultLpMint: Address; }; export declare function getCalibrateHighWaterMarkUnsafeInstruction(input: CalibrateHighWaterMarkUnsafeInput, config?: { programAddress?: TProgramAddress; }): CalibrateHighWaterMarkUnsafeInstruction; export type ParsedCalibrateHighWaterMarkUnsafeInstruction = { programAddress: Address; accounts: { admin: TAccountMetas[0]; protocol: TAccountMetas[1]; vault: TAccountMetas[2]; vaultLpMint: TAccountMetas[3]; }; data: CalibrateHighWaterMarkUnsafeInstructionData; }; export declare function parseCalibrateHighWaterMarkUnsafeInstruction(instruction: Instruction & InstructionWithAccounts & InstructionWithData): ParsedCalibrateHighWaterMarkUnsafeInstruction; //# sourceMappingURL=calibrateHighWaterMarkUnsafe.d.ts.map