package tezos-protocol-016-PtMumbai

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type id = {
  1. published_level : Raw_level_repr.t;
  2. index : Index.t;
}

For Layer-1, a slot is identified by the level at which it is published and the slot's index.

type t = {
  1. id : id;
  2. commitment : Commitment.t;
}

For Layer-1, a slot is described by its slot id and the slot's commitment.

type operation = {
  1. header : t;
  2. proof : Commitment_proof.t;
}

A "publish slot header" operation contains a slot header together with a proof that the slot size is smaller than slot_size.

encoding for values of type id.

encoding for values of type t.

encoding for values of type operation.

pretty-printer for values of type id.

pretty-printer for values of type t.

val equal : t -> t -> bool

equal function for values of type t.

check that for the given slot header operation, the commitment proof is correct wrt the commitment

OCaml

Innovation. Community. Security.