package octez-shell-libs
Octez shell libraries
Install
Dune Dependency
Authors
Maintainers
Sources
tezos-octez-v20.1.tag.bz2
sha256=ddfb5076eeb0b32ac21c1eed44e8fc86a6743ef18ab23fff02d36e365bb73d61
sha512=d22a827df5146e0aa274df48bc2150b098177ff7e5eab52c6109e867eb0a1f0ec63e6bfbb0e3645a6c2112de3877c91a17df32ccbff301891ce4ba630c997a65
doc/src/octez-shell-libs.client-base/client_context.ml.html
Source file client_context.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 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
(*****************************************************************************) (* *) (* Open Source License *) (* Copyright (c) 2018 Dynamic Ledger Solutions, Inc. <contact@tezos.com> *) (* Copyright (c) 2018 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. *) (* *) (*****************************************************************************) type ('a, 'b) lwt_format = ('a, Format.formatter, unit, 'b Lwt.t) format4 class type printer = object method error : ('a, 'b) lwt_format -> 'a method warning : ('a, unit) lwt_format -> 'a method message : ('a, unit) lwt_format -> 'a method answer : ('a, unit) lwt_format -> 'a method log : string -> ('a, unit) lwt_format -> 'a end class type prompter = object method prompt : ('a, string tzresult) lwt_format -> 'a method prompt_password : ('a, Bytes.t tzresult) lwt_format -> 'a method multiple_password_retries : bool end class type io = object inherit printer inherit prompter end class simple_printer log = let message x = Format.kasprintf (fun msg -> log "stdout" msg) x in object method error : type a b. (a, b) lwt_format -> a = Format.kasprintf (fun msg -> Lwt.fail (Failure msg)) method warning : type a. (a, unit) lwt_format -> a = Format.kasprintf (fun msg -> log "stderr" msg) method message : type a. (a, unit) lwt_format -> a = message method answer : type a. (a, unit) lwt_format -> a = message method log : type a. string -> (a, unit) lwt_format -> a = fun name -> Format.kasprintf (fun msg -> log name msg) end class type wallet = object method load_passwords : string Lwt_stream.t option method read_file : string -> string tzresult Lwt.t method with_lock : (unit -> 'a Lwt.t) -> 'a Lwt.t method load : string -> default:'a -> 'a Data_encoding.encoding -> 'a tzresult Lwt.t method write : string -> 'a -> 'a Data_encoding.encoding -> unit tzresult Lwt.t method last_modification_time : string -> float option tzresult Lwt.t method get_base_dir : string end class type chain = object method chain : Shell_services.chain end class type block = object method block : Shell_services.block method confirmations : int option end class type io_wallet = object inherit printer inherit prompter inherit wallet end class type io_rpcs = object inherit printer inherit prompter inherit Tezos_rpc.Context.generic end class type ui = object method sleep : float -> unit Lwt.t method exit : 'a. int -> 'a method now : unit -> Ptime.t end class type ux_options = object method verbose_rpc_error_diagnostics : bool end class type full = object inherit printer inherit prompter inherit wallet inherit Tezos_rpc.Context.generic inherit chain inherit block inherit ui inherit ux_options end class proxy_context (obj : full) = object method load_passwords = obj#load_passwords method read_file = obj#read_file method base = obj#base method chain = obj#chain method block = obj#block method confirmations = obj#confirmations method answer : type a. (a, unit) lwt_format -> a = obj#answer method call_service : 'm 'p 'q 'i 'o. (([< Resto.meth] as 'm), 'pr, 'p, 'q, 'i, 'o) Tezos_rpc.Service.t -> 'p -> 'q -> 'i -> 'o tzresult Lwt.t = obj#call_service method call_streamed_service : 'm 'p 'q 'i 'o. (([< Resto.meth] as 'm), 'pr, 'p, 'q, 'i, 'o) Tezos_rpc.Service.t -> on_chunk:('o -> unit) -> on_close:(unit -> unit) -> 'p -> 'q -> 'i -> (unit -> unit) tzresult Lwt.t = obj#call_streamed_service method error : type a b. (a, b) lwt_format -> a = obj#error method generic_media_type_call = obj#generic_media_type_call method with_lock : type a. (unit -> a Lwt.t) -> a Lwt.t = obj#with_lock method load : type a. string -> default:a -> a Data_encoding.encoding -> a tzresult Lwt.t = obj#load method log : type a. string -> (a, unit) lwt_format -> a = obj#log method message : type a. (a, unit) lwt_format -> a = obj#message method warning : type a. (a, unit) lwt_format -> a = obj#warning method write : type a. string -> a -> a Data_encoding.encoding -> unit tzresult Lwt.t = obj#write method last_modification_time : string -> float option tzresult Lwt.t = obj#last_modification_time method prompt : type a. (a, string tzresult) lwt_format -> a = obj#prompt method prompt_password : type a. (a, Bytes.t tzresult) lwt_format -> a = obj#prompt_password method multiple_password_retries : bool = obj#multiple_password_retries method sleep : float -> unit Lwt.t = obj#sleep method exit : 'a. int -> 'a = obj#exit method now : unit -> Ptime.t = obj#now method get_base_dir : string = obj#get_base_dir method verbose_rpc_error_diagnostics = obj#verbose_rpc_error_diagnostics end let log _ _ = Lwt.return_unit let null_printer : #printer = new simple_printer log
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>