You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

jdchain_cli.md 1.1 kB

3 years ago
123456789101112131415161718192021222324252627282930
  1. ## JD Chain Cli
  2. JD Chain 命令行工具集,提供密钥管理,实时交易,链上信息查询,离线交易,共识节点变更等操作。
  3. ```bash
  4. :bin$ ./jdchain-cli.sh -h
  5. Usage: jdchain-cli [-hV] [--pretty] [--home=<path>] [COMMAND]
  6. JDChain Cli is a convenient tool to manage jdchain keys, sign and send
  7. transactions to jdchain network, query data from jdchain network.
  8. -h, --help Show this help message and exit.
  9. --home=<path> Set the home directory.
  10. --pretty Pretty json print
  11. -V, --version Print version information and exit.
  12. Commands:
  13. The most commonly used git commands are:
  14. keys List, create, update or delete keypairs.
  15. tx Build, sign or send transaction.
  16. query Query commands.
  17. participant Add, update or delete participant.
  18. help Displays help information about the specified command
  19. See 'jdchain-cli help <command>' to read about a specific subcommand or concept.
  20. ```
  21. - `keys` [密钥管理](cli/keys.md)
  22. - `tx` [交易](cli/tx.md)
  23. - `query` [链上信息查询](cli/query.md)
  24. - `participant` [共识节点变更](cli/participant.md)