UpdateGroupMemberPointerInstruction
type UpdateGroupMemberPointerInstruction<TProgram, TAccountMint, TAccountGroupMemberPointerAuthority, TRemainingAccounts> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[TAccountMint extends string ? WritableAccount<TAccountMint> : TAccountMint, TAccountGroupMemberPointerAuthority extends string ? ReadonlyAccount<TAccountGroupMemberPointerAuthority> : TAccountGroupMemberPointerAuthority, ...TRemainingAccounts]>;Type Parameters
| Type Parameter | Default type |
|---|---|
TProgram extends string | typeof TOKEN_2022_PROGRAM_ADDRESS |
TAccountMint extends string | AccountMeta<string> | string |
TAccountGroupMemberPointerAuthority extends string | AccountMeta<string> | string |
TRemainingAccounts extends readonly AccountMeta<string>[] | [] |