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. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
|
|
|
let protocol =
|
2017-04-05 11:54:21 +04:00
|
|
|
Protocol_hash.of_b58check_exn
|
2017-02-19 21:22:32 +04:00
|
|
|
"ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK"
|
2016-09-08 21:13:10 +04:00
|
|
|
|
|
|
|
let () =
|
2016-12-03 16:05:02 +04:00
|
|
|
Client_commands.register protocol @@
|
2018-02-11 22:17:40 +04:00
|
|
|
List.map (Cli_entries.map_command (new Proto_alpha.wrap_full_context)) @@
|
2017-11-07 20:38:11 +04:00
|
|
|
Client_proto_programs_commands.commands () @
|
|
|
|
Client_proto_contracts_commands.commands () @
|
|
|
|
Client_proto_context_commands.commands () @
|
|
|
|
Client_baking_main.commands ()
|