package octez-protocol-018-Proxford-libs
Octez protocol 018-Proxford libraries
Install
Dune Dependency
Authors
Maintainers
Sources
tezos-octez-v20.1.tag.bz2
sha256=ddfb5076eeb0b32ac21c1eed44e8fc86a6743ef18ab23fff02d36e365bb73d61
sha512=d22a827df5146e0aa274df48bc2150b098177ff7e5eab52c6109e867eb0a1f0ec63e6bfbb0e3645a6c2112de3877c91a17df32ccbff301891ce4ba630c997a65
doc/src/octez-protocol-018-Proxford-libs.client/michelson_v1_stack.ml.html
Source file michelson_v1_stack.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
(*****************************************************************************) (* *) (* Open Source License *) (* Copyright (c) 2023 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. *) (* *) (*****************************************************************************) open Tezos_micheline open Protocol open Alpha_context type error += | Wrong_stack_item of Micheline_parser.location * Micheline_printer.node | Wrong_stack of Micheline_parser.location * Micheline_printer.node | Wrong_other_contracts_item of Micheline_parser.location * Micheline_printer.node | Wrong_other_contracts of Micheline_parser.location * Micheline_printer.node | Wrong_extra_big_maps_item of Micheline_parser.location * Micheline_printer.node | Wrong_extra_big_maps of Micheline_parser.location * Micheline_printer.node | Invalid_address_for_smart_contract of string let micheline_printer_location_encoding : Micheline_printer.location Data_encoding.encoding = let open Data_encoding in conv (fun loc -> loc.Micheline_printer.comment) (fun comment -> {comment}) (option string) let micheline_printer_node_encoding : Micheline_printer.node Data_encoding.encoding = Micheline_encoding.table_encoding ~variant:"" micheline_printer_location_encoding Data_encoding.string let () = let open Data_encoding in Protocol_client_context.register_error_kind `Permanent ~id:"michelson.stack.wrong_stack_item" ~title:"Wrong stack item" ~description:"Failed to parse an item in a typed stack." ~pp:(fun ppf (_loc, node) -> Format.fprintf ppf "Unexpected format for an item in a typed stack. Expected: Stack_elt \ <ty> <value>; got %a." Micheline_printer.print_expr_unwrapped node) (obj2 (req "location" Micheline_parser.location_encoding) (req "node" micheline_printer_node_encoding)) (function Wrong_stack_item (loc, node) -> Some (loc, node) | _ -> None) (fun (loc, node) -> Wrong_stack_item (loc, node)) ; Protocol_client_context.register_error_kind `Permanent ~id:"michelson.stack.wrong_stack" ~title:"Wrong stack" ~description:"Failed to parse a typed stack." ~pp:(fun ppf (_loc, node) -> Format.fprintf ppf "Unexpected format for a typed stack. Expected a sequence of Stack_elt \ <ty> <value>; got %a." Micheline_printer.print_expr_unwrapped node) (obj2 (req "location" Micheline_parser.location_encoding) (req "node" micheline_printer_node_encoding)) (function Wrong_stack (loc, node) -> Some (loc, node) | _ -> None) (fun (loc, node) -> Wrong_stack (loc, node)) ; Protocol_client_context.register_error_kind `Permanent ~id:"michelson.wrong_other_contracts_item" ~title:"Wrong description of an other contract" ~description:"Failed to parse an item in a description of other contracts." ~pp:(fun ppf (_loc, node) -> Format.fprintf ppf "Unexpected format for an item in a description of other contracts. \ Expected: Contract <address> <ty>; got %a." Micheline_printer.print_expr_unwrapped node) (obj2 (req "location" Micheline_parser.location_encoding) (req "node" micheline_printer_node_encoding)) (function | Wrong_other_contracts_item (loc, node) -> Some (loc, node) | _ -> None) (fun (loc, node) -> Wrong_other_contracts_item (loc, node)) ; Protocol_client_context.register_error_kind `Permanent ~id:"michelson.wrong_other_contracts" ~title:"Wrong description of a list of other contracts" ~description:"Failed to parse a description of other contracts." ~pp:(fun ppf (_loc, node) -> Format.fprintf ppf "Unexpected format for a description of other contracts. Expected a \ sequence of Contract <address> <ty>; got %a." Micheline_printer.print_expr_unwrapped node) (obj2 (req "location" Micheline_parser.location_encoding) (req "node" micheline_printer_node_encoding)) (function | Wrong_other_contracts (loc, node) -> Some (loc, node) | _ -> None) (fun (loc, node) -> Wrong_other_contracts (loc, node)) ; Protocol_client_context.register_error_kind `Permanent ~id:"michelson.wrong_extra_big_maps_item" ~title:"Wrong description of an extra big map" ~description:"Failed to parse an item in a description of extra big maps." ~pp:(fun ppf (_loc, node) -> Format.fprintf ppf "Unexpected format for an item in a description of extra big maps. \ Expected: Big_map <index> <key_type> <value_type> <content>; got %a." Micheline_printer.print_expr_unwrapped node) (obj2 (req "location" Micheline_parser.location_encoding) (req "node" micheline_printer_node_encoding)) (function | Wrong_extra_big_maps_item (loc, node) -> Some (loc, node) | _ -> None) (fun (loc, node) -> Wrong_extra_big_maps_item (loc, node)) ; Protocol_client_context.register_error_kind `Permanent ~id:"michelson.wrong_extra_big_maps" ~title:"Wrong description of a list of extra big maps" ~description:"Failed to parse a description of extra big maps." ~pp:(fun ppf (_loc, node) -> Format.fprintf ppf "Unexpected format for a description of extra big maps. Expected a \ sequence of Big_map <index> <key_type> <value_type> <content>; got \ %a." Micheline_printer.print_expr_unwrapped node) (obj2 (req "location" Micheline_parser.location_encoding) (req "node" micheline_printer_node_encoding)) (function | Wrong_extra_big_maps (loc, node) -> Some (loc, node) | _ -> None) (fun (loc, node) -> Wrong_extra_big_maps (loc, node)) ; Protocol_client_context.register_error_kind `Permanent ~id:"InvalidAddressForSmartContract" ~title:"Invalid address for smart contract" ~description: "Invalid input, expected a smart contract address in base58 check \ notation (KT1...)" Data_encoding.(obj1 (req "invalid_address" string)) ~pp:(fun ppf literal -> Format.fprintf ppf "Bad argument value for a smart contract address. Expected an address \ in base58 checked notation starting with 'KT1', but given '%s'" literal) (function Invalid_address_for_smart_contract str -> Some str | _ -> None) (fun str -> Invalid_address_for_smart_contract str) let parse_expression ~source (node : Micheline_parser.node) : Script.expr tzresult = let open Result_syntax in let parsing_result = Michelson_v1_parser.expand_all ~source ~original:node in let* parsed = Micheline_parser.no_parsing_error parsing_result in return parsed.expanded let printable node = Micheline_printer.printable Fun.id (Micheline.strip_locations node) let parse_stack_item ~source = let open Result_syntax in function | Micheline.Prim (_loc, "Stack_elt", [ty; v], _annot) -> let* ty = parse_expression ~source ty in let* v = parse_expression ~source v in return (ty, v) | e -> tzfail (Wrong_stack_item (Micheline.location e, printable e)) let parse_other_contract_item ~source = let open Result_syntax in function | Micheline.Prim (_loc, "Contract", [address; ty], _annot) as e -> let* address = parse_expression ~source address in let* address = match Micheline.root address with | Micheline.String (_loc, s) -> ( match Environment.Base58.decode s with | Some (Contract_hash.Data h) -> return h | Some _ | None -> tzfail (Invalid_address_for_smart_contract s)) | _ -> tzfail (Wrong_other_contracts_item (Micheline.location e, printable e)) in let* ty = parse_expression ~source ty in return RPC.Scripts.S.{address; ty} | e -> tzfail (Wrong_other_contracts_item (Micheline.location e, printable e)) let parse_extra_big_map_item ~source = let open Result_syntax in function | Micheline.Prim (_loc, "Big_map", [id; kty; vty; items], _annot) as e -> let* id = parse_expression ~source id in let* id = match Micheline.root id with | Micheline.Int (_loc, id) -> return (Big_map.Id.parse_z id) | _ -> tzfail (Wrong_other_contracts_item (Micheline.location e, printable e)) in let* kty = parse_expression ~source kty in let* vty = parse_expression ~source vty in let* items = parse_expression ~source items in return RPC.Scripts.S.{id; kty; vty; items} | e -> tzfail (Wrong_extra_big_maps_item (Micheline.location e, printable e)) let parse_stack ~source = function | Micheline.Seq (loc, l) as e -> record_trace (Wrong_stack (loc, printable e)) @@ List.map_e (parse_stack_item ~source) l | e -> Result_syntax.tzfail (Wrong_stack (Micheline.location e, printable e)) let parse_other_contracts ~source = function | Micheline.Seq (loc, l) as e -> record_trace (Wrong_other_contracts (loc, printable e)) @@ List.map_e (parse_other_contract_item ~source) l | e -> Result_syntax.tzfail (Wrong_other_contracts (Micheline.location e, printable e)) let parse_extra_big_maps ~source = function | Micheline.Seq (loc, l) as e -> record_trace (Wrong_extra_big_maps (loc, printable e)) @@ List.map_e (parse_extra_big_map_item ~source) l | e -> Result_syntax.tzfail (Wrong_extra_big_maps (Micheline.location e, printable e))
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>