Properties of an AddTask.

interface IAddTask {
    aggregatorPubkey?: null | string;
    big?: null | string;
    job?: null | IOracleJob;
    scalar?: null | number;
}

Implemented by

Properties

aggregatorPubkey?: null | string

Specifies an aggregator to add by.

big?: null | string

A stringified big.js. Accepts variable expansion syntax.

job?: null | IOracleJob

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

scalar?: null | number

Specifies a scalar to add by.