Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Latest commit

 

History

History
49 lines (33 loc) · 1.33 KB

system.md

File metadata and controls

49 lines (33 loc) · 1.33 KB

lisk-core system

Commands relating to Lisk Core node.

lisk-core system:metadata

Get node metadata from a running application.

USAGE
  $ lisk-core system:metadata

OPTIONS
  -d, --data-path=data-path  Directory path to specify where node data is stored. Environment variable "LISK_DATA_PATH"
                             can also be used.

  --pretty                   Prints JSON in pretty format rather than condensed.

EXAMPLES
  system:metadata
  system:metadata --data-path ./lisk

See code: dist/commands/system/metadata.ts

lisk-core system:node-info

Get node information from a running application.

USAGE
  $ lisk-core system:node-info

OPTIONS
  -d, --data-path=data-path  Directory path to specify where node data is stored. Environment variable "LISK_DATA_PATH"
                             can also be used.

  --pretty                   Prints JSON in pretty format rather than condensed.

EXAMPLES
  system:node-info
  system:node-info --data-path ./lisk

See code: dist/commands/system/node-info.ts