Tezos_dal_node_lib.Dal_plugin
type slot_header = {
published_level : int32;
slot_index : slot_index;
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.
module type T = sig ... end
val register : (module T) -> unit
val get : Tezos_base.TzPervasives.Protocol_hash.Table.key -> (module T) option