2016-09-08 21:13:10 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Copyright (c) 2014 - 2016. *)
|
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
|
|
|
val transfer:
|
2016-12-03 16:05:02 +04:00
|
|
|
Client_commands.context ->
|
2016-09-08 21:13:10 +04:00
|
|
|
Client_proto_rpcs.block ->
|
|
|
|
?force:bool ->
|
|
|
|
source:Contract.t ->
|
|
|
|
src_pk:public_key ->
|
|
|
|
src_sk:secret_key ->
|
|
|
|
destination:Contract.t ->
|
|
|
|
?arg:string ->
|
|
|
|
amount:Tez.t ->
|
|
|
|
fee:Tez.t ->
|
|
|
|
unit -> unit tzresult Lwt.t
|
|
|
|
|
|
|
|
val originate_account:
|
2016-12-03 16:05:02 +04:00
|
|
|
Client_commands.context ->
|
2016-09-08 21:13:10 +04:00
|
|
|
Client_proto_rpcs.block ->
|
|
|
|
?force:bool ->
|
|
|
|
source:Contract.t ->
|
|
|
|
src_pk:public_key ->
|
|
|
|
src_sk:secret_key ->
|
|
|
|
manager_pkh:public_key_hash ->
|
|
|
|
?delegatable:bool ->
|
|
|
|
?spendable:bool ->
|
|
|
|
?delegate:public_key_hash ->
|
|
|
|
balance:Tez.t ->
|
|
|
|
fee:Tez.t ->
|
|
|
|
unit -> Contract.t tzresult Lwt.t
|
|
|
|
|
|
|
|
val originate_contract:
|
2016-12-03 16:05:02 +04:00
|
|
|
Client_commands.context ->
|
2016-09-08 21:13:10 +04:00
|
|
|
Client_proto_rpcs.block ->
|
|
|
|
?force:bool ->
|
|
|
|
source:Contract.t ->
|
|
|
|
src_pk:public_key ->
|
|
|
|
src_sk:secret_key ->
|
|
|
|
manager_pkh:public_key_hash ->
|
|
|
|
balance:Tez.t ->
|
|
|
|
?delegatable:bool ->
|
|
|
|
?delegatePubKey:public_key_hash ->
|
|
|
|
code:Script.code ->
|
|
|
|
init:string ->
|
|
|
|
fee:Tez.t ->
|
|
|
|
unit -> Contract.t tzresult Lwt.t
|
|
|
|
|
2016-12-03 16:05:02 +04:00
|
|
|
val commands: unit -> Client_commands.command list
|