package octez-protocol-001-PtCJ7pwo-libs
Octez protocol 001-PtCJ7pwo libraries
Install
Dune Dependency
Authors
Maintainers
Sources
octez-19.1.tar.gz
sha256=55ea1fb8bb3273a7fc270ca8f650d45c56449665619482aad9bc12f3ea736b7e
sha512=fec850fc2d17d7490bbabd5147d62aad13b3aaed8774270f8a38ab419670ed03e0fd30cf8642a97984eca5c2446726fe590ad99c015f7ec50919dc7652f25053
doc/src/tezos_client_001_PtCJ7pwo_commands/client_proto_programs_commands.ml.html
Source file client_proto_programs_commands.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 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339
(*****************************************************************************) (* *) (* Open Source License *) (* Copyright (c) 2018 Dynamic Ledger Solutions, Inc. <contact@tezos.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. *) (* *) (*****************************************************************************) open Protocol let group = { Tezos_clic.name = "scripts"; title = "Commands for managing the library of known scripts"; } open Tezos_micheline open Client_proto_programs open Client_proto_args let commands () = let open Tezos_clic in let show_types_switch = switch ~long:"details" ~short:'v' ~doc:"show the types of each instruction" () in let emacs_mode_switch = switch ~long:"emacs" ?short:None ~doc:"output in `michelson-mode.el` compatible format" () in let trace_stack_switch = switch ~long:"trace-stack" ~doc:"show the stack after each step" () in let amount_arg = Client_proto_args.tez_arg ~parameter:"amount" ~doc:"amount of the transfer in \xEA\x9C\xA9" ~default:"0.05" in let custom_gas_flag = arg ~long:"gas" ~short:'G' ~doc:"Initial quantity of gas for typechecking and execution" ~placeholder:"gas" (parameter (fun _ctx str -> try let v = Z.of_string str in assert (Compare.Z.(v >= Z.zero)) ; return v with _ -> failwith "invalid gas limit (must be a positive number)")) in let resolve_max_gas cctxt block = function | None -> Alpha_services.Constants.all cctxt (`Main, block) >>=? fun {parametric = {hard_gas_limit_per_operation; _}; _} -> return hard_gas_limit_per_operation | Some gas -> return gas in let data_parameter = Tezos_clic.parameter (fun _ data -> Lwt.return (Micheline_parser.no_parsing_error @@ Michelson_v1_parser.parse_expression data)) in let bytes_parameter ~name ~desc = Tezos_clic.param ~name ~desc (parameter (fun (_cctxt : Alpha_client_context.full) s -> match if String.length s < 2 || s.[0] <> '0' || s.[1] <> 'x' then None else Hex.to_bytes (`Hex (String.sub s 2 (String.length s - 2))) with | Some s -> return s | None -> failwith "Invalid bytes, expecting hexadecimal notation (e.g. \ 0x1234abcd)")) in let signature_parameter = Tezos_clic.parameter (fun _cctxt s -> match Tezos_crypto.Signature.V0.of_b58check_opt s with | Some s -> return s | None -> failwith "Not given a valid signature") in [ command ~group ~desc:"Lists all scripts in the library." no_options (fixed ["list"; "known"; "scripts"]) (fun () (cctxt : Alpha_client_context.full) -> Program.load cctxt >>=? fun list -> List.iter_s (fun (n, _) -> cctxt#message "%s" n) list >>= fun () -> return_unit); command ~group ~desc:"Add a script to the library." (args1 (Program.force_switch ())) (prefixes ["remember"; "script"] @@ Program.fresh_alias_param @@ Program.source_param @@ stop) (fun force name hash cctxt -> Program.of_fresh cctxt force name >>=? fun name -> Program.add ~force cctxt name hash); command ~group ~desc:"Remove a script from the library." no_options (prefixes ["forget"; "script"] @@ Program.alias_param @@ stop) (fun () (name, _) cctxt -> Program.del cctxt name); command ~group ~desc:"Display a script from the library." no_options (prefixes ["show"; "known"; "script"] @@ Program.alias_param @@ stop) (fun () (_, program) (cctxt : Alpha_client_context.full) -> Program.to_source program >>=? fun source -> cctxt#message "%s\n" source >>= fun () -> return_unit); command ~group ~desc:"Ask the node to run a script." (args3 trace_stack_switch amount_arg no_print_source_flag) (prefixes ["run"; "script"] @@ Program.source_param @@ prefixes ["on"; "storage"] @@ Tezos_clic.param ~name:"storage" ~desc:"the storage data" data_parameter @@ prefixes ["and"; "input"] @@ Tezos_clic.param ~name:"storage" ~desc:"the input data" data_parameter @@ stop) (fun (trace_exec, amount, no_print_source) program storage input cctxt -> Lwt.return @@ Micheline_parser.no_parsing_error program >>=? fun program -> let show_source = not no_print_source in if trace_exec then trace cctxt ~block:cctxt#block ~amount ~program ~storage ~input () >>= fun res -> print_trace_result cctxt ~show_source ~parsed:program res else run cctxt ~block:cctxt#block ~amount ~program ~storage ~input () >>= fun res -> print_run_result cctxt ~show_source ~parsed:program res); command ~group ~desc:"Ask the node to typecheck a script." (args4 show_types_switch emacs_mode_switch no_print_source_flag custom_gas_flag) (prefixes ["typecheck"; "script"] @@ Program.source_param @@ stop) (fun (show_types, emacs_mode, no_print_source, original_gas) program cctxt -> match program with | program, [] -> resolve_max_gas cctxt cctxt#block original_gas >>=? fun original_gas -> typecheck_program cctxt ~block:cctxt#block ~gas:original_gas program >>= fun res -> print_typecheck_result ~emacs:emacs_mode ~show_types ~print_source_on_error:(not no_print_source) program res cctxt | res_with_errors when emacs_mode -> cctxt#message "(@[<v 0>(types . ())@ (errors . %a)@])" Michelson_v1_emacs.report_errors res_with_errors >>= fun () -> return_unit | parsed, errors -> cctxt#message "%a" (fun ppf () -> Michelson_v1_error_reporter.report_errors ~details:(not no_print_source) ~parsed ~show_source:(not no_print_source) ppf errors) () >>= fun () -> cctxt#error "syntax error in program"); command ~group ~desc:"Ask the node to typecheck a data expression." (args2 no_print_source_flag custom_gas_flag) (prefixes ["typecheck"; "data"] @@ Tezos_clic.param ~name:"data" ~desc:"the data to typecheck" data_parameter @@ prefixes ["against"; "type"] @@ Tezos_clic.param ~name:"type" ~desc:"the expected type" data_parameter @@ stop) (fun (no_print_source, custom_gas) data ty cctxt -> resolve_max_gas cctxt cctxt#block custom_gas >>=? fun original_gas -> Client_proto_programs.typecheck_data cctxt ~block:cctxt#block ~gas:original_gas ~data ~ty () >>= function | Ok gas -> cctxt#message "@[<v 0>Well typed@,Gas remaining: %a@]" Alpha_context.Gas.pp gas >>= fun () -> return_unit | Error errs -> cctxt#warning "%a" (Michelson_v1_error_reporter.report_errors ~details:false ~show_source:(not no_print_source) ?parsed:None) errs >>= fun () -> cctxt#error "ill-typed data"); command ~group ~desc: "Ask the node to pack a data expression.\n\ The returned hash is the same as what Michelson instruction `PACK` \ would have produced.\n\ Also displays the result of hashing this packed data with `BLAKE2B`, \ `SHA256` or `SHA512` instruction." (args1 custom_gas_flag) (prefixes ["hash"; "data"] @@ Tezos_clic.param ~name:"data" ~desc:"the data to hash" data_parameter @@ prefixes ["of"; "type"] @@ Tezos_clic.param ~name:"type" ~desc:"type of the data" data_parameter @@ stop) (fun custom_gas data typ cctxt -> resolve_max_gas cctxt cctxt#block custom_gas >>=? fun original_gas -> Alpha_services.Helpers.Scripts.pack_data cctxt (`Main, cctxt#block) (data.expanded, typ.expanded, Some original_gas) >>= function | Ok (bytes, remaining_gas) -> let hash = Script_expr_hash.hash_bytes [bytes] in cctxt#message "Raw packed data: 0x%a@,\ Hash: %a@,\ Raw Blake2b hash: 0x%a@,\ Raw Sha256 hash: 0x%a@,\ Raw Sha512 hash: 0x%a@,\ Gas remaining: %a" Hex.pp (Hex.of_bytes bytes) Script_expr_hash.pp hash Hex.pp (Hex.of_bytes (Script_expr_hash.to_bytes hash)) Hex.pp (Hex.of_bytes (Environment.Raw_hashes.sha256 bytes)) Hex.pp (Hex.of_bytes (Environment.Raw_hashes.sha512 bytes)) Alpha_context.Gas.pp remaining_gas >>= fun () -> return_unit | Error errs -> cctxt#warning "%a" (Michelson_v1_error_reporter.report_errors ~details:false ~show_source:false ?parsed:None) errs >>= fun () -> cctxt#error "ill-formed data"); command ~group ~desc: "Sign a raw sequence of bytes and display it using the format expected \ by Michelson instruction `CHECK_SIGNATURE`." no_options (prefixes ["sign"; "bytes"] @@ bytes_parameter ~name:"data" ~desc:"the raw data to sign" @@ prefixes ["for"] @@ Client_keys_v0.Secret_key.source_param @@ stop) (fun () bytes sk cctxt -> Client_keys_v0.sign cctxt sk bytes >>=? fun signature -> cctxt#message "Signature: %a" Tezos_crypto.Signature.V0.pp signature >>= fun () -> return_unit); command ~group ~desc: "Check the signature of a byte sequence as per Michelson instruction \ `CHECK_SIGNATURE`." (args1 (switch ~doc:"Use only exit codes" ~short:'q' ~long:"quiet" ())) (prefixes ["check"; "that"] @@ bytes_parameter ~name:"bytes" ~desc:"the signed data" @@ prefixes ["was"; "signed"; "by"] @@ Client_keys_v0.Public_key.alias_param ~name:"key" @@ prefixes ["to"; "produce"] @@ Tezos_clic.param ~name:"signature" ~desc:"the signature to check" signature_parameter @@ stop) (fun quiet bytes (_, (key_locator, _)) signature (cctxt : #Alpha_client_context.full) -> Client_keys_v0.check key_locator signature bytes >>=? function | false -> cctxt#error "invalid signature" | true -> if quiet then return_unit else cctxt#message "Signature check successful." >>= fun () -> return_unit); ]
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>