package octez-protocol-010-PtGRANAD-libs
Octez protocol 010-PtGRANAD libraries
Install
Dune Dependency
Authors
Maintainers
Sources
tezos-octez-v20.1.tag.bz2
sha256=ddfb5076eeb0b32ac21c1eed44e8fc86a6743ef18ab23fff02d36e365bb73d61
sha512=d22a827df5146e0aa274df48bc2150b098177ff7e5eab52c6109e867eb0a1f0ec63e6bfbb0e3645a6c2112de3877c91a17df32ccbff301891ce4ba630c997a65
doc/src/octez-protocol-010-PtGRANAD-libs.client/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
(*****************************************************************************) (* *) (* 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 Contract_entity = struct include Contract (* t, Compare, encoding *) let of_source s = Contract.of_b58check s |> Environment.wrap_tzresult |> record_trace (error_of_fmt "bad contract notation") |> Lwt.return let to_source s = return (Contract.to_b58check s) let name = "contract" end module Raw_contract_alias = Client_aliases.Alias (Contract_entity) module Contract_alias = struct let find cctxt s = Raw_contract_alias.find_opt cctxt s >>=? function | Some v -> return (s, v) | None -> ( Client_keys_v0.Public_key_hash.find_opt cctxt s >>=? function | Some v -> return (s, Contract.implicit_contract v) | None -> failwith "no contract or key named %s" s) let find_key cctxt name = Client_keys_v0.Public_key_hash.find cctxt name >>=? fun v -> return (name, Contract.implicit_contract v) let rev_find cctxt c = match Contract.is_implicit c with | Some hash -> ( Client_keys_v0.Public_key_hash.rev_find cctxt hash >>=? function | Some name -> return_some ("key:" ^ name) | None -> return_none) | None -> Raw_contract_alias.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_v0.Public_key_hash.autocomplete cctxt >>=? fun keys -> Raw_contract_alias.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 (fun cctxt p -> get_contract cctxt p)) next) let find_destination cctxt s = match String.split ~limit:1 ':' s with | ["alias"; alias] -> find cctxt alias | ["key"; text] -> Client_keys_v0.Public_key_hash.find cctxt text >>=? fun v -> return (s, Contract.implicit_contract v) | _ -> ( find cctxt s >>= function | Ok v -> return v | Error k_errs -> ( Contract_entity.of_source s >>= function | Ok v -> return (s, v) | Error c_errs -> Lwt.return_error (k_errs @ c_errs))) let destination_parameter () = Tezos_clic.parameter ~autocomplete:(fun cctxt -> autocomplete cctxt >>=? fun list1 -> Client_keys_v0.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 an alias, a key, or a literal (autodetected in order).\n\ Use 'text:<literal>', 'alias:<name>', 'key:<key>' 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 an alias, a key, or a literal (autodetected in order).\n\ Use 'text:<literal>', 'alias:<name>', 'key:<key>' 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 = Raw_contract_alias.load cctxt >>=? fun raw_contracts -> List.map_s (fun (n, v) -> Lwt.return ("", n, v)) raw_contracts >>= fun contracts -> Client_keys_v0.Public_key_hash.load cctxt >>=? fun keys -> (* List accounts (implicit contracts of identities) *) List.map_es (fun (n, v) -> Raw_contract_alias.mem cctxt n >>=? fun mem -> let p = if mem then "key:" else "" in let v' = Contract.implicit_contract 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)"
>