Interface TransferFee

TransferFeeConfig as stored by the program

interface TransferFee {
    epoch: bigint;
    maximumFee: bigint;
    transferFeeBasisPoints: number;
}

Properties

epoch: bigint

First epoch where the transfer fee takes effect

maximumFee: bigint

Maximum fee assessed on transfers, expressed as an amount of tokens

transferFeeBasisPoints: number

Amount of transfer collected as fees, expressed as basis points of the transfer amount, ie. increments of 0.01%

Generated using TypeDoc