package octez-smart-rollup-node-lib

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type state = {
  1. cctxt : Tezos_client_base.Client_context.full;
  2. fee_parameters : Operation_kind.fee_parameters;
  3. minimal_block_delay : int64;
  4. delay_increment_per_round : int64;
}
include Octez_injector.Injector_sigs.S with type state := state and type tag := Operation_kind.t and type operation := Octez_smart_rollup.L1_operation.t
type injected_info = {
  1. op : Inj_operation.t;
    (*

    The injector operation.

    *)
  2. oph : Tezos_base.TzPervasives.Operation_hash.t;
    (*

    The hash of the operation which contains op (this can be an L1 batch of several manager operations).

    *)
  3. op_index : int;
    (*

    The index of the operation op in the L1 batch corresponding to oph.

    *)
}

Information stored about an L1 operation that was injected on a Tezos node.

type included_info = {
  1. op : Inj_operation.t;
    (*

    The injector operation.

    *)
  2. oph : Tezos_base.TzPervasives.Operation_hash.t;
    (*

    The hash of the operation which contains op (this can be an L1 batch of several manager operations).

    *)
  3. op_index : int;
    (*

    The index of the operation op in the L1 batch corresponding to oph.

    *)
  4. l1_block : Tezos_base.TzPervasives.Block_hash.t;
    (*

    The hash of the L1 block in which the operation was included.

    *)
  5. l1_level : int32;
    (*

    The level of l1_block.

    *)
}

Information stored about an L1 operation that was included in a Tezos block.

type status =
  1. | Pending of Octez_smart_rollup.L1_operation.t
    (*

    The operation is pending injection.

    *)
  2. | Injected of injected_info
    (*

    The operation has been injected successfully in the node.

    *)
  3. | Included of included_info
    (*

    The operation has been included in a L1 block.

    *)

Status of an operation in the injector.

val init : Tezos_client_base.Client_context.full -> data_dir:string -> ?retention_period:int -> ?allowed_attempts:int -> ?injection_ttl:int -> ?reconnection_delay:float -> state -> signers: (Tezos_base.TzPervasives.Signature.public_key_hash list * Octez_injector.Injector_sigs.injection_strategy * Operation_kind.t list) list -> unit Tezos_base.TzPervasives.tzresult Lwt.t

Initializes the injector with the rollup node state, for a list of signers, and start the workers. Each signer's list has its own worker with a queue of operations to inject.

retention_period is the number of blocks for which the injector keeps the included information for, must be positive or zero. By default (when 0), the injector will not keep information longer than necessary. It can be useful to set this value to something > 0 if we want to retrieve information about operations included on L1 for a given period.

allowed_attempts is the number of attempts that will be made to inject an operation. Operations whose injection fails a number of times greater than this value will be discarded from the queue.

injection_ttl is the number of blocks after which an operation that is injected but never include is retried.

The injector monitors L1 heads to update the statuses of its operations accordingly. The argument reconnection_delay gives an initial value for the delay before attempting a reconnection (see Layer_1.init).

Each pkh's list and tag list of signers must be disjoint.

Add an operation as pending injection in the injector. It returns the hash of the operation in the injector queue.

val inject : ?tags:Operation_kind.t list -> ?header:Tezos_base.Block_header.shell_header -> unit -> unit Lwt.t

Trigger an injection of the pending operations for all workers. If tags is given, only the workers which have a tag in tags inject their pending operations. header must be provided for the `Delay_block strategy to compute the next block timestamp.

val shutdown : unit -> unit Lwt.t

Shutdown the injectors, waiting for the ongoing request to be processed.

val operation_status : Inj_operation.Hash.t -> status option

The status of an operation in the injector.

Register a protocol client for a specific protocol to be used by the injector. This function must be called for all protocols that the injector is meant support.

Checks if an operation can be added as a pending operation in the specified mode. If allowed, adds it to the pending operation. Return none when the operation is not allowed in the mode.

OCaml

Innovation. Community. Security.