/** * 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 Option, type OptionOrNullable, type ReadonlyUint8Array, type WritableAccount } from '@solana/kit'; import { TOKEN_2022_PROGRAM_ADDRESS } from '../programs'; export declare const INITIALIZE_GROUP_MEMBER_POINTER_DISCRIMINATOR = 41; export declare function getInitializeGroupMemberPointerDiscriminatorBytes(): ReadonlyUint8Array; export declare const INITIALIZE_GROUP_MEMBER_POINTER_GROUP_MEMBER_POINTER_DISCRIMINATOR = 0; export declare function getInitializeGroupMemberPointerGroupMemberPointerDiscriminatorBytes(): ReadonlyUint8Array; export type InitializeGroupMemberPointerInstruction = string, TRemainingAccounts extends readonly AccountMeta[] = []> = Instruction & InstructionWithData & InstructionWithAccounts<[ TAccountMint extends string ? WritableAccount : TAccountMint, ...TRemainingAccounts ]>; export type InitializeGroupMemberPointerInstructionData = { discriminator: number; groupMemberPointerDiscriminator: number; /** The public key for the account that can update the group member address. */ authority: Option
; /** The account address that holds the member. */ memberAddress: Option
; }; export type InitializeGroupMemberPointerInstructionDataArgs = { /** The public key for the account that can update the group member address. */ authority: OptionOrNullable
; /** The account address that holds the member. */ memberAddress: OptionOrNullable
; }; export declare function getInitializeGroupMemberPointerInstructionDataEncoder(): FixedSizeEncoder; export declare function getInitializeGroupMemberPointerInstructionDataDecoder(): FixedSizeDecoder; export declare function getInitializeGroupMemberPointerInstructionDataCodec(): FixedSizeCodec; export type InitializeGroupMemberPointerInput = { /** The mint to initialize. */ mint: Address; authority: InitializeGroupMemberPointerInstructionDataArgs['authority']; memberAddress: InitializeGroupMemberPointerInstructionDataArgs['memberAddress']; }; export declare function getInitializeGroupMemberPointerInstruction(input: InitializeGroupMemberPointerInput, config?: { programAddress?: TProgramAddress; }): InitializeGroupMemberPointerInstruction; export type ParsedInitializeGroupMemberPointerInstruction = { programAddress: Address; accounts: { /** The mint to initialize. */ mint: TAccountMetas[0]; }; data: InitializeGroupMemberPointerInstructionData; }; export declare function parseInitializeGroupMemberPointerInstruction(instruction: Instruction & InstructionWithAccounts & InstructionWithData): ParsedInitializeGroupMemberPointerInstruction; //# sourceMappingURL=initializeGroupMemberPointer.d.ts.map