From 5b6b582459f358974ce61f6c6905644970aebe54 Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Thu, 6 Dec 2018 16:00:03 -0500 Subject: [PATCH] chore(console): add new command descriptions to the help command --- src/lib/modules/console/index.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/lib/modules/console/index.ts b/src/lib/modules/console/index.ts index a132f10a6..d7b01d6c4 100644 --- a/src/lib/modules/console/index.ts +++ b/src/lib/modules/console/index.ts @@ -78,6 +78,16 @@ class Console { "swarm - " + __("instantiated swarm-api object configured to the current environment (available if swarm is enabled)"), "web3 - " + __("instantiated web3.js object configured to the current environment"), "EmbarkJS - " + __("EmbarkJS static functions for Storage, Messages, Names, etc."), + "token - " + __("Copies and prints the token for the cockpit"), + "debug - " + __("Debug the last transaction or the transaction specified by a hash"), + " next/n - " + __("During a debug, step over forward"), + " previous/p - " + __("During a debug, step over back"), + " var local/v l/vl - " + __("During a debug, display local variables"), + " var global/v g/vg - " + __("During a debug, display global variables"), + " var all/v a/va - " + __("During a debug, display all variables"), + " var all/v a/va - " + __("During a debug, display all variables"), + "log on/off - " + __("Activate or deactivate the logs of a sub-process. Options: blockchain, "), + "plugin install - " + __("Installs a plugin in the Dapp. eg: plugin install embark-solc"), "quit - " + __("to immediatly exit (alias: exit)"), "", __("The web3 object and the interfaces for the deployed contracts and their methods are also available"),