gill
gill/programs/token/Type aliases

InitializeTransferFeeConfigInstructionDataArgs

type InitializeTransferFeeConfigInstructionDataArgs = {
  maximumFee: number | bigint;
  transferFeeBasisPoints: number;
  transferFeeConfigAuthority: OptionOrNullable<Address>;
  withdrawWithheldAuthority: OptionOrNullable<Address>;
};

Properties

maximumFee

maximumFee: number | bigint;

Maximum fee assessed on transfers.


transferFeeBasisPoints

transferFeeBasisPoints: number;

Amount of transfer collected as fees, expressed as basis points of the transfer amount.


transferFeeConfigAuthority

transferFeeConfigAuthority: OptionOrNullable<Address>;

Pubkey that may update the fees.


withdrawWithheldAuthority

withdrawWithheldAuthority: OptionOrNullable<Address>;

Withdraw instructions must be signed by this key.

On this page