/** * 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 ReadonlySignerAccount, type ReadonlyUint8Array, type TransactionSigner, type WritableAccount } from '@solana/kit'; import { MPL_BUBBLEGUM_PROGRAM_ADDRESS } from '../programs'; import { type DecompressibleState, type DecompressibleStateArgs } from '../types'; export declare const SET_DECOMPRESSIBLE_STATE_DISCRIMINATOR: Uint8Array; export declare function getSetDecompressibleStateDiscriminatorBytes(): ReadonlyUint8Array; export type SetDecompressibleStateInstruction = string, TAccountTreeCreator extends string | AccountMeta = string, TRemainingAccounts extends readonly AccountMeta[] = []> = Instruction & InstructionWithData & InstructionWithAccounts<[ TAccountTreeConfig extends string ? WritableAccount : TAccountTreeConfig, TAccountTreeCreator extends string ? ReadonlySignerAccount & AccountSignerMeta : TAccountTreeCreator, ...TRemainingAccounts ]>; export type SetDecompressibleStateInstructionData = { discriminator: ReadonlyUint8Array; decompressableState: DecompressibleState; }; export type SetDecompressibleStateInstructionDataArgs = { decompressableState: DecompressibleStateArgs; }; export declare function getSetDecompressibleStateInstructionDataEncoder(): FixedSizeEncoder; export declare function getSetDecompressibleStateInstructionDataDecoder(): FixedSizeDecoder; export declare function getSetDecompressibleStateInstructionDataCodec(): FixedSizeCodec; export type SetDecompressibleStateInput = { treeConfig: Address; treeCreator: TransactionSigner; decompressableState: SetDecompressibleStateInstructionDataArgs['decompressableState']; }; export declare function getSetDecompressibleStateInstruction(input: SetDecompressibleStateInput, config?: { programAddress?: TProgramAddress; }): SetDecompressibleStateInstruction; export type ParsedSetDecompressibleStateInstruction = { programAddress: Address; accounts: { treeConfig: TAccountMetas[0]; treeCreator: TAccountMetas[1]; }; data: SetDecompressibleStateInstructionData; }; export declare function parseSetDecompressibleStateInstruction(instruction: Instruction & InstructionWithAccounts & InstructionWithData): ParsedSetDecompressibleStateInstruction; //# sourceMappingURL=setDecompressibleState.d.ts.map