ligo/src/proto_alpha/lib_client/client_proto_args.mli

51 lines
2.0 KiB
OCaml
Raw Normal View History

2016-09-08 21:13:10 +04:00
(**************************************************************************)
(* *)
2018-02-06 00:17:03 +04:00
(* Copyright (c) 2014 - 2018. *)
2016-09-08 21:13:10 +04:00
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
(* *)
(* All rights reserved. No warranty, explicit or implicit, provided. *)
(* *)
(**************************************************************************)
open Proto_alpha
open Alpha_context
2016-09-08 21:13:10 +04:00
val tez_sym: string
2018-04-03 13:39:09 +04:00
val init_arg: (string, Proto_alpha.full) Clic.arg
val fee_arg: (Tez.t, Proto_alpha.full) Clic.arg
val gas_limit_arg: (Z.t option, Proto_alpha.full) Clic.arg
val storage_limit_arg: (Z.t option, Proto_alpha.full) Clic.arg
2018-04-03 13:39:09 +04:00
val arg_arg: (string, Proto_alpha.full) Clic.arg
val source_arg: (string option, Proto_alpha.full) Clic.arg
2018-02-11 22:17:39 +04:00
val delegate_arg: (Signature.Public_key_hash.t option, Proto_alpha.full) Clic.arg
2018-04-03 13:39:09 +04:00
val delegatable_switch: (bool, Proto_alpha.full) Clic.arg
val spendable_switch: (bool, Proto_alpha.full) Clic.arg
val max_priority_arg: (int option, Proto_alpha.full) Clic.arg
val force_switch: (bool, Proto_alpha.full) Clic.arg
val minimal_timestamp_switch: (bool, Proto_alpha.full) Clic.arg
2018-04-03 13:39:09 +04:00
val endorsement_delay_arg: (int, Proto_alpha.full) Clic.arg
2018-02-11 22:17:39 +04:00
val no_print_source_flag: (bool, Proto_alpha.full) Clic.arg
val no_confirmation: (bool, Proto_alpha.full) Clic.arg
val tez_arg :
default:string ->
parameter:string ->
doc:string ->
2018-04-03 13:39:09 +04:00
(Tez.t, Proto_alpha.full) Clic.arg
2016-09-08 21:13:10 +04:00
val tez_param :
name:string ->
2016-09-08 21:13:10 +04:00
desc:string ->
2018-04-03 13:39:09 +04:00
('a, full) Clic.params ->
(Tez.t -> 'a, full) Clic.params
2016-09-08 21:13:10 +04:00
module Daemon : sig
2018-04-03 13:39:09 +04:00
val baking_switch: (bool, Proto_alpha.full) Clic.arg
val endorsement_switch: (bool, Proto_alpha.full) Clic.arg
val denunciation_switch: (bool, Proto_alpha.full) Clic.arg
2016-09-08 21:13:10 +04:00
end
2017-09-27 11:55:20 +04:00
2018-04-03 13:39:09 +04:00
val string_parameter : (string, full) Clic.parameter