Committed context hashes / IDs.
include Tezos_stdlib.Compare.S with type t := t
x = y iff compare x y = 0
x <> y iff compare x y <> 0
x < y iff compare x y < 0
x <= y iff compare x y <= 0
x >= y iff compare x y >= 0
x > y iff compare x y > 0
compare an alias for the functor parameter's compare function
equal x y iff compare x y = 0
max x y is x if x >= y otherwise it is y
min x y is x if x <= y otherwise it is y
Sourceval hash_string : ?key:string -> string list -> t hash_string ?key inputs returns a hash.
Raises an Assert_failure if String.length key > 64.
Sourceval of_string_opt : string -> t option Sourceval of_string_exn : string -> t Sourceval to_b58check : t -> string Sourceval to_short_b58check : t -> string Sourceval of_b58check_exn : string -> t Sourceval of_b58check_opt : string -> t option Sourceval seeded_hash : int -> t -> int Sourceval to_path : t -> string list -> string list Sourceval of_path : string list -> t option Sourceval of_path_exn : string list -> t Sourceval prefix_path : string -> string list The module for representing the hash version of a context