ScriptRequest provides functionality to encode and decode script data and results.

Type Parameters

  • TData = void

    Type of the script data.

  • TResult = void

    Type of the script result.

Constructors

  • Creates an instance of the ScriptRequest class.

    Type Parameters

    • TData = void
    • TResult = void

    Parameters

    • bytes: BytesLike

      The bytes of the script.

    • scriptDataEncoder: ((data: TData) => EncodedScriptCall)

      The script data encoder function.

        • (data): EncodedScriptCall
        • Parameters

          Returns EncodedScriptCall

    • scriptResultDecoder: ((scriptResult: ScriptResult) => TResult)

      The script result decoder function.

        • (scriptResult): TResult
        • Parameters

          • scriptResult: ScriptResult

          Returns TResult

    Returns ScriptRequest<TData, TResult>

Properties

bytes: Uint8Array<ArrayBufferLike>

The bytes of the script.

scriptDataEncoder: ((data: TData) => EncodedScriptCall)

A function to encode the script data.

scriptResultDecoder: ((scriptResult: ScriptResult) => TResult)

A function to decode the script result.

Methods

  • Decodes the result of a script call.

    Parameters

    • callResult: CallResult

      The CallResult from the script call.

    • logs: any[] = []

      Optional logs associated with the decoding.

    Returns TResult

    The decoded result.

  • Encodes the data for a script call.

    Parameters

    • data: TData

      The script data.

    Returns Uint8Array<ArrayBufferLike>

    The encoded data.

  • Gets the script data offset.

    Parameters

    • maxInputs: number

      The maxInputs value from the chain's consensus params.

    Returns number

    The script data offset.

  • Gets the script data offset for the given bytes.

    Parameters

    • byteLength: number

      The byte length of the script.

    • maxInputs: number

      The maxInputs value from the chain's consensus params.

    Returns number

    The script data offset.