/** * 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 AccountDataAssertions, type AccountDataAssertionsArgs } from '../../hooked'; import { LIGHTHOUSE_PROGRAM_ADDRESS } from '../programs'; import { LogLevel, type LogLevelArgs } from '../types'; export declare const ASSERT_ACCOUNT_DATA_MULTI_DISCRIMINATOR = 3; export declare function getAssertAccountDataMultiDiscriminatorBytes(): import("@solana/kit").ReadonlyUint8Array; export type AssertAccountDataMultiInstruction = string, TRemainingAccounts extends readonly IAccountMeta[] = []> = IInstruction & IInstructionWithData & IInstructionWithAccounts<[ TAccountTargetAccount extends string ? ReadonlyAccount : TAccountTargetAccount, ...TRemainingAccounts ]>; export type AssertAccountDataMultiInstructionData = { discriminator: number; logLevel: LogLevel; assertions: AccountDataAssertions; }; export type AssertAccountDataMultiInstructionDataArgs = { logLevel?: LogLevelArgs; assertions: AccountDataAssertionsArgs; }; export declare function getAssertAccountDataMultiInstructionDataEncoder(): Encoder; export declare function getAssertAccountDataMultiInstructionDataDecoder(): Decoder; export declare function getAssertAccountDataMultiInstructionDataCodec(): Codec; export type AssertAccountDataMultiInput = { /** Target account to be asserted */ targetAccount: Address; logLevel?: AssertAccountDataMultiInstructionDataArgs['logLevel']; assertions: AssertAccountDataMultiInstructionDataArgs['assertions']; }; export declare function getAssertAccountDataMultiInstruction(input: AssertAccountDataMultiInput, config?: { programAddress?: TProgramAddress; }): AssertAccountDataMultiInstruction; export type ParsedAssertAccountDataMultiInstruction = { programAddress: Address; accounts: { /** Target account to be asserted */ targetAccount: TAccountMetas[0]; }; data: AssertAccountDataMultiInstructionData; }; export declare function parseAssertAccountDataMultiInstruction(instruction: IInstruction & IInstructionWithAccounts & IInstructionWithData): ParsedAssertAccountDataMultiInstruction; //# sourceMappingURL=assertAccountDataMulti.d.ts.map