/** * 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 MintAccountAssertions, type MintAccountAssertionsArgs } from '../../hooked'; import { LIGHTHOUSE_PROGRAM_ADDRESS } from '../programs'; import { LogLevel, type LogLevelArgs } from '../types'; export declare const ASSERT_MINT_ACCOUNT_MULTI_DISCRIMINATOR = 8; export declare function getAssertMintAccountMultiDiscriminatorBytes(): import("@solana/kit").ReadonlyUint8Array; export type AssertMintAccountMultiInstruction = string, TRemainingAccounts extends readonly IAccountMeta[] = []> = IInstruction & IInstructionWithData & IInstructionWithAccounts<[ TAccountTargetAccount extends string ? ReadonlyAccount : TAccountTargetAccount, ...TRemainingAccounts ]>; export type AssertMintAccountMultiInstructionData = { discriminator: number; logLevel: LogLevel; assertions: MintAccountAssertions; }; export type AssertMintAccountMultiInstructionDataArgs = { logLevel?: LogLevelArgs; assertions: MintAccountAssertionsArgs; }; export declare function getAssertMintAccountMultiInstructionDataEncoder(): Encoder; export declare function getAssertMintAccountMultiInstructionDataDecoder(): Decoder; export declare function getAssertMintAccountMultiInstructionDataCodec(): Codec; export type AssertMintAccountMultiInput = { /** Target account to be asserted */ targetAccount: Address; logLevel?: AssertMintAccountMultiInstructionDataArgs['logLevel']; assertions: AssertMintAccountMultiInstructionDataArgs['assertions']; }; export declare function getAssertMintAccountMultiInstruction(input: AssertMintAccountMultiInput, config?: { programAddress?: TProgramAddress; }): AssertMintAccountMultiInstruction; export type ParsedAssertMintAccountMultiInstruction = { programAddress: Address; accounts: { /** Target account to be asserted */ targetAccount: TAccountMetas[0]; }; data: AssertMintAccountMultiInstructionData; }; export declare function parseAssertMintAccountMultiInstruction(instruction: IInstruction & IInstructionWithAccounts & IInstructionWithData): ParsedAssertMintAccountMultiInstruction; //# sourceMappingURL=assertMintAccountMulti.d.ts.map