/** * 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 Codec, type Decoder, type Encoder, type Instruction, type InstructionWithAccounts, type InstructionWithData, type ReadonlyAccount, type ReadonlySignerAccount, type ReadonlyUint8Array, type TransactionSigner, type WritableAccount } from '@solana/kit'; import { TOKEN_2022_PROGRAM_ADDRESS } from '../programs'; export declare const INITIALIZE_TOKEN_GROUP_MEMBER_DISCRIMINATOR: Uint8Array; export declare function getInitializeTokenGroupMemberDiscriminatorBytes(): ReadonlyUint8Array; export type InitializeTokenGroupMemberInstruction = string, TAccountMemberMint extends string | AccountMeta = string, TAccountMemberMintAuthority extends string | AccountMeta = string, TAccountGroup extends string | AccountMeta = string, TAccountGroupUpdateAuthority extends string | AccountMeta = string, TRemainingAccounts extends readonly AccountMeta[] = []> = Instruction & InstructionWithData & InstructionWithAccounts<[ TAccountMember extends string ? WritableAccount : TAccountMember, TAccountMemberMint extends string ? ReadonlyAccount : TAccountMemberMint, TAccountMemberMintAuthority extends string ? ReadonlySignerAccount & AccountSignerMeta : TAccountMemberMintAuthority, TAccountGroup extends string ? WritableAccount : TAccountGroup, TAccountGroupUpdateAuthority extends string ? ReadonlySignerAccount & AccountSignerMeta : TAccountGroupUpdateAuthority, ...TRemainingAccounts ]>; export type InitializeTokenGroupMemberInstructionData = { discriminator: ReadonlyUint8Array; }; export type InitializeTokenGroupMemberInstructionDataArgs = {}; export declare function getInitializeTokenGroupMemberInstructionDataEncoder(): Encoder; export declare function getInitializeTokenGroupMemberInstructionDataDecoder(): Decoder; export declare function getInitializeTokenGroupMemberInstructionDataCodec(): Codec; export type InitializeTokenGroupMemberInput = { member: Address; memberMint: Address; memberMintAuthority: TransactionSigner; group: Address; groupUpdateAuthority: TransactionSigner; }; export declare function getInitializeTokenGroupMemberInstruction(input: InitializeTokenGroupMemberInput, config?: { programAddress?: TProgramAddress; }): InitializeTokenGroupMemberInstruction; export type ParsedInitializeTokenGroupMemberInstruction = { programAddress: Address; accounts: { member: TAccountMetas[0]; memberMint: TAccountMetas[1]; memberMintAuthority: TAccountMetas[2]; group: TAccountMetas[3]; groupUpdateAuthority: TAccountMetas[4]; }; data: InitializeTokenGroupMemberInstructionData; }; export declare function parseInitializeTokenGroupMemberInstruction(instruction: Instruction & InstructionWithAccounts & InstructionWithData): ParsedInitializeTokenGroupMemberInstruction; //# sourceMappingURL=initializeTokenGroupMember.d.ts.map