/** * 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 Address, type FixedSizeCodec, type FixedSizeDecoder, type FixedSizeEncoder, type Instruction, type InstructionWithAccounts, type InstructionWithData, type ReadonlyUint8Array, type WritableAccount } from '@solana/kit'; import { TOKEN_2022_PROGRAM_ADDRESS } from '../programs'; export declare const INITIALIZE_IMMUTABLE_OWNER_DISCRIMINATOR = 22; export declare function getInitializeImmutableOwnerDiscriminatorBytes(): ReadonlyUint8Array; export type InitializeImmutableOwnerInstruction = string, TRemainingAccounts extends readonly AccountMeta[] = []> = Instruction & InstructionWithData & InstructionWithAccounts<[ TAccountAccount extends string ? WritableAccount : TAccountAccount, ...TRemainingAccounts ]>; export type InitializeImmutableOwnerInstructionData = { discriminator: number; }; export type InitializeImmutableOwnerInstructionDataArgs = {}; export declare function getInitializeImmutableOwnerInstructionDataEncoder(): FixedSizeEncoder; export declare function getInitializeImmutableOwnerInstructionDataDecoder(): FixedSizeDecoder; export declare function getInitializeImmutableOwnerInstructionDataCodec(): FixedSizeCodec; export type InitializeImmutableOwnerInput = { /** The account to initialize. */ account: Address; }; export declare function getInitializeImmutableOwnerInstruction(input: InitializeImmutableOwnerInput, config?: { programAddress?: TProgramAddress; }): InitializeImmutableOwnerInstruction; export type ParsedInitializeImmutableOwnerInstruction = { programAddress: Address; accounts: { /** The account to initialize. */ account: TAccountMetas[0]; }; data: InitializeImmutableOwnerInstructionData; }; export declare function parseInitializeImmutableOwnerInstruction(instruction: Instruction & InstructionWithAccounts & InstructionWithData): ParsedInitializeImmutableOwnerInstruction; //# sourceMappingURL=initializeImmutableOwner.d.ts.map