Round the current running result to an exponential power.

Input: The current running numerical result.

Returns: The input raised to an exponential power.

Example: Raise 2 to the power of 3, 2^3

{"tasks":[{"valueTask":{"value":2}},{"powTask":{"scalar":3}}]}

Implements

Constructors

  • Constructs a new PowTask.

    Parameters

    • Optionalproperties: IPowTask

      Properties to set

    Returns PowTask

Properties

aggregatorPubkey?: string

Take the working value to the exponent of the aggregators value.

big?: string

A stringified big.js. Accepts variable expansion syntax.

Exponent?: "aggregatorPubkey" | "big" | "scalar"

PowTask Exponent.

scalar?: number

Take the working value to the exponent of value.

Methods

  • Converts this PowTask to JSON.

    Returns { [k: string]: any }

    JSON object

  • Creates a new PowTask instance using the specified properties.

    Parameters

    • Optionalproperties: IPowTask

      Properties to set

    Returns PowTask

    PowTask instance

  • Decodes a PowTask message from the specified reader or buffer.

    Parameters

    • reader: Uint8Array<ArrayBufferLike> | Reader

      Reader or buffer to decode from

    • Optionallength: number

      Message length if known beforehand

    Returns PowTask

    PowTask

    If the payload is not a reader or valid buffer

    If required fields are missing

  • Decodes a PowTask message from the specified reader or buffer, length delimited.

    Parameters

    • reader: Uint8Array<ArrayBufferLike> | Reader

      Reader or buffer to decode from

    Returns PowTask

    PowTask

    If the payload is not a reader or valid buffer

    If required fields are missing

  • Encodes the specified PowTask message. Does not implicitly verify messages.

    Parameters

    • message: IPowTask

      PowTask message or plain object to encode

    • Optionalwriter: Writer

      Writer to encode to

    Returns Writer

    Writer

  • Encodes the specified PowTask message, length delimited. Does not implicitly verify messages.

    Parameters

    • message: IPowTask

      PowTask message or plain object to encode

    • Optionalwriter: Writer

      Writer to encode to

    Returns Writer

    Writer

  • Creates a PowTask message from a plain object. Also converts values to their respective internal types.

    Parameters

    • object: { [k: string]: any }

      Plain object

    Returns PowTask

    PowTask

  • Gets the default type url for PowTask

    Parameters

    Returns string

    The default type url

  • Creates a plain object from a PowTask message. Also converts values to other types if specified.

    Parameters

    • message: PowTask

      PowTask

    • Optionaloptions: IConversionOptions

      Conversion options

    Returns { [k: string]: any }

    Plain object

  • Verifies a PowTask message.

    Parameters

    • message: { [k: string]: any }

      Plain object to verify

    Returns string

    null if valid, otherwise the reason why it is not