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