package octez-shell-libs

  1. Overview
  2. Docs
Octez shell libraries

Install

Dune Dependency

Authors

Maintainers

Sources

tezos-octez-v20.1.tag.bz2
sha256=ddfb5076eeb0b32ac21c1eed44e8fc86a6743ef18ab23fff02d36e365bb73d61
sha512=d22a827df5146e0aa274df48bc2150b098177ff7e5eab52c6109e867eb0a1f0ec63e6bfbb0e3645a6c2112de3877c91a17df32ccbff301891ce4ba630c997a65

doc/src/octez-shell-libs.mockup/persistence_intf.ml.html

Source file persistence_intf.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
(*****************************************************************************)
(*                                                                           *)
(* Open Source License                                                       *)
(* Copyright (c) 2021 Nomadic Labs, <contact@nomadic-labs.com>               *)
(*                                                                           *)
(* Permission is hereby granted, free of charge, to any person obtaining a   *)
(* copy of this software and associated documentation files (the "Software"),*)
(* to deal in the Software without restriction, including without limitation *)
(* the rights to use, copy, modify, merge, publish, distribute, sublicense,  *)
(* and/or sell copies of the Software, and to permit persons to whom the     *)
(* Software is furnished to do so, subject to the following conditions:      *)
(*                                                                           *)
(* The above copyright notice and this permission notice shall be included   *)
(* in all copies or substantial portions of the Software.                    *)
(*                                                                           *)
(* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR*)
(* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,  *)
(* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL   *)
(* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER*)
(* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING   *)
(* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER       *)
(* DEALINGS IN THE SOFTWARE.                                                 *)
(*                                                                           *)
(*****************************************************************************)

module type S = sig
  val get_registered_mockup :
    Protocol_hash.t option ->
    #Tezos_client_base.Client_context.printer ->
    Registration.mockup_environment tzresult Lwt.t

  (** Returns a mockup environment for the default protocol (which is the first
    in the list of registered protocol, cf [Registration] module). *)
  val default_mockup_context :
    Tezos_client_base.Client_context.printer ->
    (Registration.mockup_environment * Registration.mockup_context) tzresult
    Lwt.t

  (**  Returns a mockup environment for the specified protocol hash. *)
  val init_mockup_context_by_protocol_hash :
    cctxt:Tezos_client_base.Client_context.printer ->
    protocol_hash:Protocol_hash.t ->
    constants_overrides_json:Data_encoding.json option ->
    bootstrap_accounts_json:Data_encoding.json option ->
    (Registration.mockup_environment * Registration.mockup_context) tzresult
    Lwt.t

  (** Load a mockup environment and initializes a protocol RPC context from
    a mockup base directory. If the protocol is specified, check that the
    loaded environment agrees with it. *)
  val get_mockup_context_from_disk :
    base_dir:string ->
    protocol_hash:Protocol_hash.t option ->
    #Tezos_client_base.Client_context.printer ->
    (Registration.mockup_environment * Registration.mockup_context) tzresult
    Lwt.t

  (** Initializes an on-disk mockup environment in [base_dir] for the specified
    protocol. *)
  val create_mockup :
    cctxt:Tezos_client_base.Client_context.full ->
    protocol_hash:Protocol_hash.t ->
    constants_overrides_json:Data_encoding.json option ->
    bootstrap_accounts_json:Data_encoding.json option ->
    asynchronous:bool ->
    unit tzresult Lwt.t

  (** Overwrites an on-disk mockup environment. *)
  val overwrite_mockup :
    protocol_hash:Protocol_hash.t ->
    chain_id:Chain_id.t ->
    rpc_context:Tezos_protocol_environment.rpc_context ->
    protocol_data:bytes ->
    base_dir:string ->
    unit tzresult Lwt.t

  (** {2 Base directory states} *)

  type base_dir_class =
    | Base_dir_does_not_exist
    | Base_dir_is_file
    | Base_dir_is_mockup
    | Base_dir_is_nonempty
    | Base_dir_is_empty

  val pp_base_dir_class : Format.formatter -> base_dir_class -> unit

  (** Test whether base directory is a valid target for loading or creating
    a mockup environment. *)
  val classify_base_dir : string -> base_dir_class tzresult Lwt.t
end

module type T = sig
  include S

  module type S = S

  module Internal_for_tests : sig
    module Make (Registration : Registration.S) : S
  end
end
OCaml

Innovation. Community. Security.