Represents a quantity of tokens.

Type Parameters

Hierarchy

Constructors

  • amount must be raw, i.e. in the native representation

    Type Parameters

    Parameters

    • token: T
    • amount: BigintIsh
    • Optional validate: ((value: JSBI) => void)
        • (value: JSBI): void
        • Parameters

          • value: JSBI

          Returns void

    Returns TokenAmount<T>

Properties

denominator: JSBI
isFraction: true

This boolean checks to see if this is actually a Fraction.

numerator: JSBI
token: T
ZERO: Fraction

Accessors

  • get asFraction(): Fraction
  • Helper method for converting any super class back to a fraction

    Returns Fraction

  • get denominatorStr(): string
  • Fraction denominator.

    Returns string

  • get numeratorStr(): string
  • Fraction numerator.

    Returns string

  • get quotient(): JSBI
  • Performs floor division.

    Returns JSBI

  • get remainder(): Fraction
  • Remainder after floor division.

    Returns Fraction

Methods

  • Compares this Fraction to the other Fraction.

    Parameters

    Returns 0 | 1 | -1

  • Parameters

    Returns boolean

  • Parameters

    Returns boolean

  • Swaps the numerator and denominator of the Fraction.

    Returns

    Returns Fraction

  • Returns true if this number (the numerator) is not equal to zero.

    Returns

    Returns boolean

  • Returns true if this number (the numerator) is equal to zero and the denominator is non-zero.

    Returns

    Returns boolean

  • Parameters

    Returns boolean

  • Parameters

    Returns Fraction

  • Parses a Fraction from a float.

    Returns

    Fraction

    Parameters

    • number: number

      Number to parse.

    • Optional decimals: number

      Number of decimals of precision. (default 10)

    Returns Fraction

  • Returns true if the other object is a Fraction.

    Returns

    Parameters

    • other: unknown

    Returns other is Fraction

Generated using TypeDoc