ligo/src/proto_alpha/lib_baking/client_baking_commands.ml

61 lines
2.9 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 Client_proto_args
2017-11-07 20:38:11 +04:00
open Client_baking_lib
2016-09-08 21:13:10 +04:00
let group =
{ Cli_entries.name = "delegate" ;
title = "Commands related to delegate operations." }
2016-09-08 21:13:10 +04:00
let commands () =
let open Cli_entries in
[
command ~group ~desc: "Launch a daemon that handles delegate operations."
(args5 max_priority_arg endorsement_delay_arg
Daemon.baking_switch Daemon.endorsement_switch Daemon.denunciation_switch)
2016-09-08 21:13:10 +04:00
(prefixes [ "launch" ; "daemon" ]
@@ seq_of_param Client_keys.Public_key_hash.alias_param)
2017-11-01 15:07:33 +04:00
(fun (max_priority, endorsement_delay, baking, endorsement, denunciation) delegates cctxt ->
let (endorsement, baking, denunciation) =
if (not endorsement) && (not baking) && (not denunciation)
then (true, true, true)
2017-11-01 15:07:33 +04:00
else (endorsement, baking, denunciation) in
2017-11-07 20:38:11 +04:00
run_daemon cctxt ?max_priority ~endorsement_delay ~endorsement ~baking ~denunciation delegates) ;
command ~group ~desc: "Forge and inject an endorsement operation."
2017-11-23 19:39:33 +04:00
(args1 max_priority_arg)
2016-09-08 21:13:10 +04:00
(prefixes [ "endorse"; "for" ]
@@ Client_keys.Public_key_hash.alias_param
~name:"baker" ~desc: "name of the delegate owning the endorsement right"
2016-09-08 21:13:10 +04:00
@@ stop)
2017-11-23 19:39:33 +04:00
(fun max_priority (_, delegate) cctxt ->
endorse_block cctxt ?max_priority delegate) ;
command ~group ~desc: "Forge and inject block using the delegate rights."
2017-11-01 15:07:33 +04:00
(args3 max_priority_arg force_switch free_baking_switch)
2017-11-20 06:37:06 +04:00
(prefixes [ "bake"; "for" ]
2016-09-08 21:13:10 +04:00
@@ Client_keys.Public_key_hash.alias_param
~name:"baker" ~desc: "name of the delegate owning the baking right"
2016-09-08 21:13:10 +04:00
@@ stop)
2017-11-01 15:07:33 +04:00
(fun (max_priority, force, free_baking) (_, delegate) cctxt ->
2017-11-07 20:38:11 +04:00
bake_block cctxt cctxt#block
2017-11-01 15:07:33 +04:00
~force ?max_priority ~free_baking delegate) ;
command ~group ~desc: "Forge and inject a seed-nonce revelation operation."
2017-11-23 19:39:33 +04:00
no_options
2016-09-08 21:13:10 +04:00
(prefixes [ "reveal"; "nonce"; "for" ]
@@ seq_of_param Block_hash.param)
2017-11-23 19:39:33 +04:00
(fun () block_hashes cctxt ->
reveal_block_nonces cctxt block_hashes) ;
command ~group ~desc: "Forge and inject all the possible seed-nonce revelation operations."
2017-11-23 19:39:33 +04:00
no_options
2016-09-08 21:13:10 +04:00
(prefixes [ "reveal"; "nonces" ]
@@ stop)
2017-11-23 19:39:33 +04:00
(fun () cctxt ->
reveal_nonces cctxt ()) ;
2016-09-08 21:13:10 +04:00
]