Query historical yield data for a given Liquid Staking Token (LST) and perform a statistical reduction operation over the dataset.

Input: LST mint address, reduction operation type, and number of epochs to sample.

Returns: The computed yield value based on the specified operation.

Example: Compute the median APY for an LST over the last 100 epochs

{
"lstHistoricalYieldTask": {
"lstMint": "J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn",
"operation": "OPERATION_MEDIAN",
"epochs": 100
}

Implements

Constructors

Properties

epochs: number

Optional. The number of epochs to sample for the computation.

  • If epochs = 0, all available historical data will be used.
  • If epochs > 0, only the last epochs entries will be included.
lstMint: string

Required. The LST mint address for which historical yield data is queried.

Required. The statistical operation to apply to the historical yield dataset.

Methods

  • Converts this LstHistoricalYieldTask to JSON.

    Returns { [k: string]: any }

    JSON object

  • Decodes a LstHistoricalYieldTask 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 OracleJob.LstHistoricalYieldTask

    LstHistoricalYieldTask

    If the payload is not a reader or valid buffer

    If required fields are missing

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

    Parameters

    • reader: Uint8Array<ArrayBufferLike> | Reader

      Reader or buffer to decode from

    Returns OracleJob.LstHistoricalYieldTask

    LstHistoricalYieldTask

    If the payload is not a reader or valid buffer

    If required fields are missing

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

    Parameters

    • message: ILstHistoricalYieldTask

      LstHistoricalYieldTask message or plain object to encode

    • Optionalwriter: Writer

      Writer to encode to

    Returns Writer

    Writer

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

    Parameters

    • message: ILstHistoricalYieldTask

      LstHistoricalYieldTask message or plain object to encode

    • Optionalwriter: Writer

      Writer to encode to

    Returns Writer

    Writer

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

    Parameters

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

      Plain object

    Returns OracleJob.LstHistoricalYieldTask

    LstHistoricalYieldTask

  • Gets the default type url for LstHistoricalYieldTask

    Parameters

    Returns string

    The default type url

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

    Parameters

    Returns { [k: string]: any }

    Plain object

  • Verifies a LstHistoricalYieldTask message.

    Parameters

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

      Plain object to verify

    Returns string

    null if valid, otherwise the reason why it is not