/** * 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_NON_TRANSFERABLE_MINT_DISCRIMINATOR = 32; export declare function getInitializeNonTransferableMintDiscriminatorBytes(): ReadonlyUint8Array; export type InitializeNonTransferableMintInstruction = string, TRemainingAccounts extends readonly AccountMeta[] = []> = Instruction & InstructionWithData & InstructionWithAccounts<[ TAccountMint extends string ? WritableAccount : TAccountMint, ...TRemainingAccounts ]>; export type InitializeNonTransferableMintInstructionData = { discriminator: number; }; export type InitializeNonTransferableMintInstructionDataArgs = {}; export declare function getInitializeNonTransferableMintInstructionDataEncoder(): FixedSizeEncoder; export declare function getInitializeNonTransferableMintInstructionDataDecoder(): FixedSizeDecoder; export declare function getInitializeNonTransferableMintInstructionDataCodec(): FixedSizeCodec; export type InitializeNonTransferableMintInput = { /** The mint account to initialize. */ mint: Address; }; export declare function getInitializeNonTransferableMintInstruction(input: InitializeNonTransferableMintInput, config?: { programAddress?: TProgramAddress; }): InitializeNonTransferableMintInstruction; export type ParsedInitializeNonTransferableMintInstruction = { programAddress: Address; accounts: { /** The mint account to initialize. */ mint: TAccountMetas[0]; }; data: InitializeNonTransferableMintInstructionData; }; export declare function parseInitializeNonTransferableMintInstruction(instruction: Instruction & InstructionWithAccounts & InstructionWithData): ParsedInitializeNonTransferableMintInstruction; //# sourceMappingURL=initializeNonTransferableMint.d.ts.map