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. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
2018-01-29 04:06:47 +04:00
|
|
|
open Proto_alpha
|
2018-02-11 22:17:39 +04:00
|
|
|
open Alpha_context
|
2018-01-29 04:06:47 +04:00
|
|
|
|
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 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
|
|
|
|
2018-04-05 19:35:35 +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 free_baking_switch: (bool, Proto_alpha.full) Clic.arg
|
|
|
|
val force_switch: (bool, Proto_alpha.full) Clic.arg
|
2018-04-21 19:16:01 +04:00
|
|
|
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
|
|
|
|
2018-04-17 12:50:23 +04:00
|
|
|
val no_print_source_flag: (bool, Proto_alpha.full) Clic.arg
|
|
|
|
val no_confirmation: (bool, Proto_alpha.full) Clic.arg
|
2017-11-03 14:53:54 +04:00
|
|
|
|
2017-07-19 13:35:01 +04:00
|
|
|
val tez_arg :
|
|
|
|
default:string ->
|
2017-09-19 13:31:35 +04:00
|
|
|
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 :
|
2016-11-22 17:23:40 +04:00
|
|
|
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
|