Properties of a ValueTask.

interface IValueTask {
    aggregatorPubkey?: null | string;
    big?: null | string;
    hex?: null | string;
    utf8?: null | string;
    value?: null | number;
}

Implemented by

Properties

aggregatorPubkey?: null | string

Specifies an aggregatorr to pull the value of.

big?: null | string

A stringified big.js. Accepts variable expansion syntax.

hex?: null | string

A stringified hex number (0x prefix is optional).

utf8?: null | string

A utf8 string.

value?: null | number

The value that will be returned from this task.