/** * 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 TokenAccountAssertions, type TokenAccountAssertionsArgs } from '../../hooked'; import { LIGHTHOUSE_PROGRAM_ADDRESS } from '../programs'; import { LogLevel, type LogLevelArgs } from '../types'; export declare const ASSERT_TOKEN_ACCOUNT_MULTI_DISCRIMINATOR = 10; export declare function getAssertTokenAccountMultiDiscriminatorBytes(): import("@solana/kit").ReadonlyUint8Array; export type AssertTokenAccountMultiInstruction = string, TRemainingAccounts extends readonly IAccountMeta[] = []> = IInstruction & IInstructionWithData & IInstructionWithAccounts<[ TAccountTargetAccount extends string ? ReadonlyAccount : TAccountTargetAccount, ...TRemainingAccounts ]>; export type AssertTokenAccountMultiInstructionData = { discriminator: number; logLevel: LogLevel; assertions: TokenAccountAssertions; }; export type AssertTokenAccountMultiInstructionDataArgs = { logLevel?: LogLevelArgs; assertions: TokenAccountAssertionsArgs; }; export declare function getAssertTokenAccountMultiInstructionDataEncoder(): Encoder; export declare function getAssertTokenAccountMultiInstructionDataDecoder(): Decoder; export declare function getAssertTokenAccountMultiInstructionDataCodec(): Codec; export type AssertTokenAccountMultiInput = { /** Target account to be asserted */ targetAccount: Address; logLevel?: AssertTokenAccountMultiInstructionDataArgs['logLevel']; assertions: AssertTokenAccountMultiInstructionDataArgs['assertions']; }; export declare function getAssertTokenAccountMultiInstruction(input: AssertTokenAccountMultiInput, config?: { programAddress?: TProgramAddress; }): AssertTokenAccountMultiInstruction; export type ParsedAssertTokenAccountMultiInstruction = { programAddress: Address; accounts: { /** Target account to be asserted */ targetAccount: TAccountMetas[0]; }; data: AssertTokenAccountMultiInstructionData; }; export declare function parseAssertTokenAccountMultiInstruction(instruction: IInstruction & IInstructionWithAccounts & IInstructionWithData): ParsedAssertTokenAccountMultiInstruction; //# sourceMappingURL=assertTokenAccountMulti.d.ts.map