package tezos-client-016-PtMumbai
Tezos/Protocol: protocol specific library for `tezos-client`
Install
Dune Dependency
Authors
Maintainers
Sources
tezos-17.3.tar.gz
sha256=7062cd57addd452852598a2214ade393130efa087b99068d53713bdf912b3680
sha512=08e4091144a03ce3c107fb91a66501bd8b65ca3278917c455a2eaac6df3e108ade63f6ab8340a4bb152d60f404326e464d0ec95d26cafe8e82f870465d24a5fc
doc/src/tezos-client-016-PtMumbai/client_proto_contracts.ml.html
Source file client_proto_contracts.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
(*****************************************************************************) (* *) (* 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 open Alpha_context module ContractEntity = struct include Contract (* t, Compare, encoding *) let of_source s = Contract.of_b58check s |> Environment.wrap_tzresult |> record_trace_eval (fun () -> error_of_fmt "bad contract notation") |> Lwt.return let to_source s = return (Contract.to_b58check s) let name = "contract" end module RawContractAlias = Client_aliases.Alias (ContractEntity) module OriginatedContractAlias = struct let find cctxt s = RawContractAlias.find_opt cctxt s >>=? function | Some (Contract.Originated v) -> return v | Some (Implicit _) -> failwith "contract %s is an implicit account" s | None -> failwith "no contract named %s" s let of_literal s = ContractEntity.of_source s >>= function | Ok (Contract.Originated v) -> return v | Ok (Implicit _) -> failwith "contract %s is an implicit account" s | Error _ as err -> Lwt.return err let find_destination cctxt s = match String.split ~limit:1 ':' s with | ["alias"; alias] -> find cctxt alias | ["text"; text] -> of_literal text | _ -> ( of_literal s >>= function | Ok _ as ok_v -> Lwt.return ok_v | Error k_errs -> ( find cctxt s >|= function | Ok _ as ok_v -> ok_v | Error c_errs -> Error (c_errs @ k_errs))) let destination_parameter () = Tezos_clic.parameter ~autocomplete:RawContractAlias.autocomplete find_destination let destination_param ?(name = "dst") ?(desc = "destination contract") next = let desc = String.concat "\n" [ desc; "Can be a literal or an alias (autodetected in order).\n\ Use 'text:literal' or 'alias:name' to force."; ] in Tezos_clic.param ~name ~desc (destination_parameter ()) next let destination_arg ?(name = "dst") ?(doc = "destination contract") () = let doc = String.concat "\n" [ doc; "Can be a literal or an alias (autodetected in order).\n\ Use 'text:literal' or 'alias:name' to force."; ] in Tezos_clic.arg ~long:name ~doc ~placeholder:name (destination_parameter ()) end module ContractAlias = struct let find cctxt s = RawContractAlias.find_opt cctxt s >>=? function | Some v -> return v | None -> ( Client_keys.Public_key_hash.find_opt cctxt s >>=? function | Some v -> return (Contract.Implicit v) | None -> failwith "no contract or key named %s" s) let find_key cctxt name = Client_keys.Public_key_hash.find cctxt name >>=? fun v -> return (Contract.Implicit v) let rev_find cctxt (c : Contract.t) = match c with | Implicit hash -> ( Client_keys.Public_key_hash.rev_find cctxt hash >>=? function | Some name -> return_some ("key:" ^ name) | None -> return_none) | Originated _ -> RawContractAlias.rev_find cctxt c let get_contract cctxt s = match String.split ~limit:1 ':' s with | ["key"; key] -> find_key cctxt key | _ -> find cctxt s let autocomplete cctxt = Client_keys.Public_key_hash.autocomplete cctxt >>=? fun keys -> RawContractAlias.autocomplete cctxt >>=? fun contracts -> return (List.map (( ^ ) "key:") keys @ contracts) let alias_param ?(name = "name") ?(desc = "existing contract alias") next = let desc = desc ^ "\n" ^ "Can be a contract alias or a key alias (autodetected in order).\n\ Use 'key:name' to force the later." in Tezos_clic.(param ~name ~desc (parameter ~autocomplete get_contract) next) let find_destination cctxt s = match String.split ~limit:1 ':' s with | ["alias"; alias] -> find cctxt alias | ["key"; text] -> Client_keys.Public_key_hash.find cctxt text >>=? fun v -> return (Contract.Implicit v) | ["text"; text] -> ContractEntity.of_source text | _ -> ( ContractEntity.of_source s >>= function | Ok v -> return v | Error c_errs -> ( find cctxt s >>= function | Ok v -> return v | Error k_errs -> Lwt.return_error (c_errs @ k_errs))) let destination_parameter () = Tezos_clic.parameter ~autocomplete:(fun cctxt -> autocomplete cctxt >>=? fun list1 -> Client_keys.Public_key_hash.autocomplete cctxt >>=? fun list2 -> return (list1 @ list2)) find_destination let destination_param ?(name = "dst") ?(desc = "destination contract") next = let desc = String.concat "\n" [ desc; "Can be a literal, an alias, or a key (autodetected in order).\n\ Use 'text:literal', 'alias:name', 'key:name' to force."; ] in Tezos_clic.param ~name ~desc (destination_parameter ()) next let destination_arg ?(name = "dst") ?(doc = "destination contract") () = let doc = String.concat "\n" [ doc; "Can be a literal, an alias, or a key (autodetected in order).\n\ Use 'text:literal', 'alias:name', 'key:name' to force."; ] in Tezos_clic.arg ~long:name ~doc ~placeholder:name (destination_parameter ()) let name cctxt contract = rev_find cctxt contract >>=? function | None -> return (Contract.to_b58check contract) | Some name -> return name end let list_contracts cctxt = RawContractAlias.load cctxt >>=? fun raw_contracts -> let contracts = List.map (fun (n, v) -> ("", n, v)) raw_contracts in Client_keys.Public_key_hash.load cctxt >>=? fun keys -> (* List accounts (implicit contracts of identities) *) List.map_es (fun (n, v) -> RawContractAlias.mem cctxt n >>=? fun mem -> let p = if mem then "key:" else "" in let v' = Contract.Implicit v in return (p, n, v')) keys >>=? fun accounts -> return (contracts @ accounts) let get_delegate cctxt ~chain ~block source = Alpha_services.Contract.delegate_opt cctxt (chain, block) source
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>