Skip to content

Latest commit

 

History

History
59 lines (42 loc) · 1.72 KB

File metadata and controls

59 lines (42 loc) · 1.72 KB

status

The status command shows an overview of your Dash node's current state.

Usage

dashmate status [OPTIONS]

Options

Option Description Default
-c, --config=<name> Configuration name to use Uses default config if not specified
--format=<format> Display output format (plain, json, yaml) plain
-v, --verbose Use verbose mode for output false

Description

This command provides a comprehensive overview of your Dash node's status, including both Core and Platform components.

It displays information such as:

  • Network (mainnet, testnet, local)
  • Core version and status
  • Core blockchain height and sync progress
  • Core service status
  • Blockchain data size
  • Masternode status (if enabled)
  • Masternode payment information
  • Platform status (if enabled)
  • Platform block height and peers

The information displayed is useful for quickly checking if your node is operating correctly and for troubleshooting issues.

You can choose to output the status in different formats using the --format option, which is particularly useful when integrating with scripts or other tools.

Examples

# Show status for default configuration
dashmate status

# Show status for a specific configuration
dashmate status --config=testnet

# Output status in JSON format
dashmate status --format=json

# Output status in YAML format
dashmate status --format=yaml

Related Commands