Type alias Fee

Fee: {
    type: FeeType;
    amount: BigNumber;
    formattedAmount: string;
    token?: TokenInfo;
    basisPoints?: number;
}

Represents a fee

Type declaration

  • type: FeeType

    The type of fee

  • amount: BigNumber

    The amount of the fee

  • formattedAmount: string

    The formatted amount of the fee

  • Optional token?: TokenInfo

    The token info for the fee

  • Optional basisPoints?: number

    The basis points for the secondary fee

Generated using TypeDoc