2016-11-29 00:54:32 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
2017-11-14 03:36:14 +04:00
|
|
|
(* Copyright (c) 2014 - 2017. *)
|
2016-11-29 00:54:32 +04:00
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
2017-11-27 09:13:12 +04:00
|
|
|
type t = {
|
|
|
|
expected_env: env_version ;
|
|
|
|
components: component list ;
|
|
|
|
}
|
|
|
|
|
|
|
|
and component = {
|
|
|
|
name: string ;
|
|
|
|
interface: string option ;
|
|
|
|
implementation: string ;
|
|
|
|
}
|
2016-11-29 00:54:32 +04:00
|
|
|
|
2017-11-27 09:13:12 +04:00
|
|
|
and env_version = V1
|
2016-11-29 00:54:32 +04:00
|
|
|
|
2017-11-27 09:13:12 +04:00
|
|
|
val component_encoding: component Data_encoding.t
|
|
|
|
val env_version_encoding: env_version Data_encoding.t
|
2016-11-29 00:54:32 +04:00
|
|
|
|
2017-11-27 09:13:12 +04:00
|
|
|
include S.HASHABLE with type t := t
|
|
|
|
and type hash := Protocol_hash.t
|
|
|
|
val of_bytes_exn: MBytes.t -> t
|
2017-01-14 16:13:59 +04:00
|
|
|
|