gill
gill/programs/token/Type aliases

ParsedSetTransferFeeInstruction

type ParsedSetTransferFeeInstruction<TProgram, TAccountMetas> = {
  accounts: {
     mint: TAccountMetas[0];
     transferFeeConfigAuthority: TAccountMetas[1];
  };
  data: SetTransferFeeInstructionData;
  programAddress: Address<TProgram>;
};

Type Parameters

Type ParameterDefault type
TProgram extends stringtypeof TOKEN_2022_PROGRAM_ADDRESS
TAccountMetas extends readonly IAccountMeta[]readonly IAccountMeta[]

Properties

accounts

accounts: {
  mint: TAccountMetas[0];
  transferFeeConfigAuthority: TAccountMetas[1];
};
NameTypeDescription
mintTAccountMetas[0]The mint.
transferFeeConfigAuthorityTAccountMetas[1]The mint's fee account owner or its multisignature account.

data

data: SetTransferFeeInstructionData;

programAddress

programAddress: Address<TProgram>;

On this page