Number with an integer numerator and denominator.

Type Parameters

Hierarchy

Constructors

  • Constructs a Price.

    denominator and numerator must be raw, i.e. in the native representation

    Type Parameters

    Parameters

    • baseCurrency: T
    • quoteCurrency: T
    • denominator: BigintIsh

      Units of base currency. E.g. 1 BTC would be 1_00000000

    • numerator: BigintIsh

      Units of quote currency. E.g. $30k at 6 decimals would be 30_000_000000

    Returns Price<T>

Properties

baseCurrency: T
denominator: JSBI
isFraction: true

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

numerator: JSBI
quoteCurrency: T
scalar: Fraction
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

  • Parameters

    Returns Fraction

  • Compares this Fraction to the other Fraction.

    Parameters

    Returns 0 | 1 | -1

  • Parameters

    Returns boolean

  • Parameters

    Returns boolean

  • 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

  • Create a new Price.

    Parameters

    • baseCurrency: T
    • quoteCurrency: T
    • denominator: BigintIsh
    • numerator: BigintIsh

    Returns Price<T>

  • 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