/** * 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 Address, type Codec, type Decoder, type Encoder, type IAccountMeta, type IInstruction, type IInstructionWithAccounts, type IInstructionWithData, type ReadonlyAccount } from '@solana/kit'; import { type AccountInfoAssertions, type AccountInfoAssertionsArgs } from '../../hooked'; import { LIGHTHOUSE_PROGRAM_ADDRESS } from '../programs'; import { LogLevel, type LogLevelArgs } from '../types'; export declare const ASSERT_ACCOUNT_INFO_MULTI_DISCRIMINATOR = 6; export declare function getAssertAccountInfoMultiDiscriminatorBytes(): import("@solana/kit").ReadonlyUint8Array; export type AssertAccountInfoMultiInstruction = string, TRemainingAccounts extends readonly IAccountMeta[] = []> = IInstruction & IInstructionWithData & IInstructionWithAccounts<[ TAccountTargetAccount extends string ? ReadonlyAccount : TAccountTargetAccount, ...TRemainingAccounts ]>; export type AssertAccountInfoMultiInstructionData = { discriminator: number; logLevel: LogLevel; assertions: AccountInfoAssertions; }; export type AssertAccountInfoMultiInstructionDataArgs = { logLevel?: LogLevelArgs; assertions: AccountInfoAssertionsArgs; }; export declare function getAssertAccountInfoMultiInstructionDataEncoder(): Encoder; export declare function getAssertAccountInfoMultiInstructionDataDecoder(): Decoder; export declare function getAssertAccountInfoMultiInstructionDataCodec(): Codec; export type AssertAccountInfoMultiInput = { /** Target account to be asserted */ targetAccount: Address; logLevel?: AssertAccountInfoMultiInstructionDataArgs['logLevel']; assertions: AssertAccountInfoMultiInstructionDataArgs['assertions']; }; export declare function getAssertAccountInfoMultiInstruction(input: AssertAccountInfoMultiInput, config?: { programAddress?: TProgramAddress; }): AssertAccountInfoMultiInstruction; export type ParsedAssertAccountInfoMultiInstruction = { programAddress: Address; accounts: { /** Target account to be asserted */ targetAccount: TAccountMetas[0]; }; data: AssertAccountInfoMultiInstructionData; }; export declare function parseAssertAccountInfoMultiInstruction(instruction: IInstruction & IInstructionWithAccounts & IInstructionWithData): ParsedAssertAccountInfoMultiInstruction; //# sourceMappingURL=assertAccountInfoMulti.d.ts.map