Properties of a DivideTask.

interface IDivideTask {
    aggregatorPubkey?: string;
    big?: string;
    job?: IOracleJob;
    scalar?: number;
}

Implemented by

Properties

aggregatorPubkey?: string

Specifies another aggregator resut to divide by.

big?: string

A stringified big.js. Accepts variable expansion syntax.

job?: IOracleJob

A job whose result is computed before dividing our numerical input by that result.

scalar?: number

Specifies a basic scalar denominator to divide by.

Generated using TypeDoc