package tezos-dal-node-lib

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type operation_application_result =
  1. | Succeeded
    (*

    The associated operation is included in a block and successfully applied.

    *)
  2. | Failed
    (*

    The associated operation is included in a block but its application was not successful (failed, backtracked or skipped).

    *)
type slot_index = int
type slot_header = {
  1. published_level : int32;
  2. slot_index : slot_index;
  3. commitment : Tezos_crypto_dal.Cryptobox.Verifier.commitment;
}

Information extracted from DAL slots headers operations included in L1 blocks. Each slot header is made of an L1 level for which it is published, the slot's index and commitment.

type proto_parameters = {
  1. feature_enable : bool;
  2. number_of_slots : int;
  3. attestation_lag : int;
  4. attestation_threshold : int;
  5. cryptobox_parameters : Tezos_crypto_dal.Cryptobox.Verifier.parameters;
  6. blocks_per_epoch : int32;
}
module type T = sig ... end
val register : (module T) -> unit
OCaml

Innovation. Community. Security.