2018-06-29 16:08:08 +04:00
|
|
|
(*****************************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* 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. *)
|
|
|
|
(* *)
|
|
|
|
(*****************************************************************************)
|
2016-09-08 21:13:10 +04:00
|
|
|
|
2018-01-29 04:06:47 +04:00
|
|
|
open Proto_alpha
|
2018-02-11 22:17:39 +04:00
|
|
|
open Alpha_context
|
2017-03-15 04:20:25 +04:00
|
|
|
|
2018-04-21 13:31:17 +04:00
|
|
|
val list_contract_labels:
|
2018-02-16 21:10:18 +04:00
|
|
|
#Proto_alpha.full ->
|
2018-04-22 16:40:44 +04:00
|
|
|
chain:Shell_services.chain ->
|
|
|
|
block:Shell_services.block ->
|
2017-11-07 20:38:11 +04:00
|
|
|
(string * string * string) list tzresult Lwt.t
|
|
|
|
|
2018-04-21 13:31:17 +04:00
|
|
|
val get_storage:
|
2018-02-11 22:17:40 +04:00
|
|
|
#Proto_alpha.rpc_context ->
|
2018-04-22 16:40:44 +04:00
|
|
|
chain:Shell_services.chain ->
|
|
|
|
block:Shell_services.block ->
|
2017-11-07 20:38:11 +04:00
|
|
|
Contract.t ->
|
|
|
|
Script.expr option tzresult Lwt.t
|
2018-07-05 19:23:35 +04:00
|
|
|
|
|
|
|
val get_big_map_value:
|
|
|
|
#Proto_alpha.rpc_context ->
|
|
|
|
chain:Shell_services.chain ->
|
|
|
|
block:Shell_services.block ->
|
|
|
|
Contract.t ->
|
|
|
|
(Script.expr * Script.expr) ->
|
|
|
|
Script.expr option tzresult Lwt.t
|
2017-11-07 20:38:11 +04:00
|
|
|
|
2018-06-28 00:05:38 +04:00
|
|
|
val get_script:
|
|
|
|
#Proto_alpha.rpc_context ->
|
|
|
|
chain:Shell_services.chain ->
|
|
|
|
block:Shell_services.block ->
|
|
|
|
Contract.t ->
|
|
|
|
Script.t option tzresult Lwt.t
|
|
|
|
|
2018-04-21 13:31:17 +04:00
|
|
|
val get_manager:
|
2018-02-16 21:10:18 +04:00
|
|
|
#Proto_alpha.full ->
|
2018-04-22 16:40:44 +04:00
|
|
|
chain:Shell_services.chain ->
|
|
|
|
block:Shell_services.block ->
|
2017-11-07 20:38:11 +04:00
|
|
|
Contract.t ->
|
2018-02-01 20:31:08 +04:00
|
|
|
(string * public_key_hash *
|
2018-05-26 15:14:33 +04:00
|
|
|
public_key * Client_keys.sk_uri) tzresult Lwt.t
|
2017-11-07 20:38:11 +04:00
|
|
|
|
2017-03-15 04:20:25 +04:00
|
|
|
val get_balance:
|
2018-02-11 22:17:40 +04:00
|
|
|
#Proto_alpha.rpc_context ->
|
2018-04-22 16:40:44 +04:00
|
|
|
chain:Shell_services.chain ->
|
|
|
|
block:Shell_services.block ->
|
2017-03-15 04:20:25 +04:00
|
|
|
Contract.t ->
|
|
|
|
Tez.t tzresult Lwt.t
|
|
|
|
|
2018-04-21 13:31:17 +04:00
|
|
|
val set_delegate:
|
2018-02-16 21:10:18 +04:00
|
|
|
#Proto_alpha.full ->
|
2018-04-22 16:40:44 +04:00
|
|
|
chain:Shell_services.chain ->
|
|
|
|
block:Shell_services.block ->
|
2018-04-22 12:50:34 +04:00
|
|
|
?confirmations:int ->
|
2018-06-25 23:27:35 +04:00
|
|
|
?dry_run:bool ->
|
2017-11-07 20:38:11 +04:00
|
|
|
fee:Tez.tez ->
|
|
|
|
Contract.t ->
|
2016-09-08 21:13:10 +04:00
|
|
|
src_pk:public_key ->
|
2018-05-26 15:14:33 +04:00
|
|
|
manager_sk:Client_keys.sk_uri ->
|
2017-11-07 20:38:11 +04:00
|
|
|
public_key_hash option ->
|
2018-04-30 21:06:06 +04:00
|
|
|
Kind.delegation Kind.manager Injection.result tzresult Lwt.t
|
2017-11-07 20:38:11 +04:00
|
|
|
|
2018-02-22 01:36:36 +04:00
|
|
|
val register_as_delegate:
|
|
|
|
#Proto_alpha.full ->
|
2018-04-22 16:40:44 +04:00
|
|
|
chain:Shell_services.chain ->
|
|
|
|
block:Shell_services.block ->
|
2018-04-22 12:50:34 +04:00
|
|
|
?confirmations:int ->
|
2018-06-25 23:27:35 +04:00
|
|
|
?dry_run:bool ->
|
2018-02-22 01:36:36 +04:00
|
|
|
fee:Tez.tez ->
|
2018-05-26 15:14:33 +04:00
|
|
|
manager_sk:Client_keys.sk_uri ->
|
2018-04-22 12:50:34 +04:00
|
|
|
public_key ->
|
2018-04-30 21:06:06 +04:00
|
|
|
Kind.delegation Kind.manager Injection.result tzresult Lwt.t
|
2018-04-19 18:32:32 +04:00
|
|
|
|
2017-11-07 20:38:11 +04:00
|
|
|
val source_to_keys:
|
2018-02-16 21:10:18 +04:00
|
|
|
#Proto_alpha.full ->
|
2018-04-22 16:40:44 +04:00
|
|
|
chain:Shell_services.chain ->
|
|
|
|
block:Shell_services.block ->
|
2017-11-07 20:38:11 +04:00
|
|
|
Contract.t ->
|
2018-05-26 15:14:33 +04:00
|
|
|
(public_key * Client_keys.sk_uri) tzresult Lwt.t
|
2017-11-07 20:38:11 +04:00
|
|
|
|
|
|
|
val originate_account :
|
2018-04-22 12:50:34 +04:00
|
|
|
#Proto_alpha.full ->
|
2018-04-22 16:40:44 +04:00
|
|
|
chain:Shell_services.chain ->
|
|
|
|
block:Shell_services.block ->
|
2018-04-22 12:50:34 +04:00
|
|
|
?confirmations:int ->
|
2018-06-25 23:27:35 +04:00
|
|
|
?dry_run:bool ->
|
2017-04-20 10:49:14 +04:00
|
|
|
?branch:int ->
|
2016-09-08 21:13:10 +04:00
|
|
|
source:Contract.t ->
|
|
|
|
src_pk:public_key ->
|
2018-05-26 15:14:33 +04:00
|
|
|
src_sk:Client_keys.sk_uri ->
|
2016-09-08 21:13:10 +04:00
|
|
|
manager_pkh:public_key_hash ->
|
|
|
|
?delegatable:bool ->
|
|
|
|
?delegate:public_key_hash ->
|
2017-11-07 20:38:11 +04:00
|
|
|
balance:Tez.tez ->
|
|
|
|
fee:Tez.tez ->
|
2018-04-30 21:06:06 +04:00
|
|
|
unit -> (Kind.origination Kind.manager Injection.result * Contract.t) tzresult Lwt.t
|
2017-11-07 20:38:11 +04:00
|
|
|
|
|
|
|
val save_contract :
|
|
|
|
force:bool ->
|
2018-02-16 21:10:18 +04:00
|
|
|
#Proto_alpha.full ->
|
2017-11-07 20:38:11 +04:00
|
|
|
string ->
|
|
|
|
Contract.t ->
|
|
|
|
unit tzresult Lwt.t
|
|
|
|
|
2016-09-08 21:13:10 +04:00
|
|
|
val originate_contract:
|
2018-04-22 12:50:34 +04:00
|
|
|
#Proto_alpha.full ->
|
2018-04-22 16:40:44 +04:00
|
|
|
chain:Shell_services.chain ->
|
|
|
|
block:Shell_services.block ->
|
2018-04-22 12:50:34 +04:00
|
|
|
?confirmations:int ->
|
2018-06-25 23:27:35 +04:00
|
|
|
?dry_run:bool ->
|
2018-04-22 12:50:34 +04:00
|
|
|
?branch:int ->
|
2017-11-07 20:38:11 +04:00
|
|
|
fee:Tez.t ->
|
2018-03-24 19:39:48 +04:00
|
|
|
?gas_limit:Z.t ->
|
2018-06-13 16:41:40 +04:00
|
|
|
?storage_limit:Z.t ->
|
2017-11-07 20:38:11 +04:00
|
|
|
delegate:public_key_hash option ->
|
|
|
|
?delegatable:bool ->
|
|
|
|
?spendable:bool ->
|
|
|
|
initial_storage:string ->
|
|
|
|
manager:public_key_hash ->
|
|
|
|
balance:Tez.t ->
|
2016-09-08 21:13:10 +04:00
|
|
|
source:Contract.t ->
|
|
|
|
src_pk:public_key ->
|
2018-05-26 15:14:33 +04:00
|
|
|
src_sk:Client_keys.sk_uri ->
|
2017-11-02 21:57:17 +04:00
|
|
|
code:Script.expr ->
|
2018-04-30 21:06:06 +04:00
|
|
|
unit -> (Kind.origination Kind.manager Injection.result * Contract.t) tzresult Lwt.t
|
2016-09-08 21:13:10 +04:00
|
|
|
|
2017-11-07 20:38:11 +04:00
|
|
|
val transfer :
|
2018-02-16 21:10:18 +04:00
|
|
|
#Proto_alpha.full ->
|
2018-04-22 16:40:44 +04:00
|
|
|
chain:Shell_services.chain ->
|
|
|
|
block:Shell_services.block ->
|
2018-04-22 12:50:34 +04:00
|
|
|
?confirmations:int ->
|
2018-06-25 23:27:35 +04:00
|
|
|
?dry_run:bool ->
|
2017-04-20 10:49:14 +04:00
|
|
|
?branch:int ->
|
2017-03-21 18:19:35 +04:00
|
|
|
source:Contract.t ->
|
2017-11-07 20:38:11 +04:00
|
|
|
src_pk:public_key ->
|
2018-05-26 15:14:33 +04:00
|
|
|
src_sk:Client_keys.sk_uri ->
|
2017-11-07 20:38:11 +04:00
|
|
|
destination:Contract.t ->
|
|
|
|
?arg:string ->
|
|
|
|
amount:Tez.t ->
|
2017-03-21 18:19:35 +04:00
|
|
|
fee:Tez.t ->
|
2018-03-24 19:39:48 +04:00
|
|
|
?gas_limit:Z.t ->
|
2018-06-13 16:41:40 +04:00
|
|
|
?storage_limit:Z.t ->
|
2018-08-30 23:45:56 +04:00
|
|
|
?counter:Z.t ->
|
2017-11-07 20:38:11 +04:00
|
|
|
unit ->
|
2018-04-30 21:06:06 +04:00
|
|
|
(Kind.transaction Kind.manager Injection.result * Contract.t list) tzresult Lwt.t
|
2017-03-21 18:19:35 +04:00
|
|
|
|
2018-02-22 01:19:21 +04:00
|
|
|
val reveal :
|
|
|
|
#Proto_alpha.full ->
|
2018-04-22 16:40:44 +04:00
|
|
|
chain:Shell_services.chain ->
|
|
|
|
block:Shell_services.block ->
|
2018-04-22 12:50:34 +04:00
|
|
|
?confirmations:int ->
|
2018-06-25 23:27:35 +04:00
|
|
|
?dry_run:bool ->
|
2018-02-22 01:19:21 +04:00
|
|
|
?branch:int ->
|
|
|
|
source:Contract.t ->
|
|
|
|
src_pk:public_key ->
|
2018-05-26 15:14:33 +04:00
|
|
|
src_sk:Client_keys.sk_uri ->
|
2018-02-22 01:19:21 +04:00
|
|
|
fee:Tez.t ->
|
2018-04-30 21:06:06 +04:00
|
|
|
unit -> Kind.reveal Kind.manager Injection.result tzresult Lwt.t
|
2018-02-22 01:19:21 +04:00
|
|
|
|
2018-04-17 12:50:23 +04:00
|
|
|
type activation_key =
|
|
|
|
{ pkh : Ed25519.Public_key_hash.t ;
|
|
|
|
amount : Tez.t ;
|
2018-06-04 16:40:10 +04:00
|
|
|
activation_code : Blinded_public_key_hash.activation_code ;
|
2018-04-17 12:50:23 +04:00
|
|
|
mnemonic : string list ;
|
|
|
|
password : string ;
|
|
|
|
email : string ;
|
|
|
|
}
|
|
|
|
|
|
|
|
val activation_key_encoding: activation_key Data_encoding.t
|
|
|
|
|
2018-04-30 21:06:06 +04:00
|
|
|
val activate_account:
|
2018-04-17 12:50:23 +04:00
|
|
|
#Proto_alpha.full ->
|
2018-04-22 16:40:44 +04:00
|
|
|
chain:Shell_services.chain ->
|
|
|
|
block:Shell_services.block ->
|
2018-04-17 12:50:23 +04:00
|
|
|
?confirmations:int ->
|
2018-06-25 23:27:35 +04:00
|
|
|
?dry_run:bool ->
|
2018-04-16 02:44:24 +04:00
|
|
|
?encrypted:bool ->
|
2018-04-17 12:50:23 +04:00
|
|
|
?force:bool ->
|
|
|
|
activation_key ->
|
|
|
|
string ->
|
2018-04-30 21:06:06 +04:00
|
|
|
Kind.activate_account Injection.result tzresult Lwt.t
|
2018-06-14 17:33:49 +04:00
|
|
|
|
|
|
|
val activate_existing_account:
|
|
|
|
#Proto_alpha.full ->
|
|
|
|
chain:Shell_services.chain ->
|
|
|
|
block:Shell_services.block ->
|
|
|
|
?confirmations:int ->
|
2018-06-25 23:27:35 +04:00
|
|
|
?dry_run:bool ->
|
2018-06-14 17:33:49 +04:00
|
|
|
string ->
|
|
|
|
Blinded_public_key_hash.activation_code ->
|
|
|
|
Kind.activate_account Injection.result tzresult Lwt.t
|