#
Control Commands
#
getinfo
Category: Control | Version: v1.2.14+
Returns an object containing various state info about the node and wallet.
Syntax
getinfo
Parameters
None.
Result
Examples
verus -testnet getinfo
Testnet output:
{
"VRSCversion": "1.2.14-2",
"version": 2000753,
"protocolversion": 170010,
"chainid": "iJhCezBExJHvtyH3fGhNnt2NhU4Ztkf2yq",
"notarychainid": "iCtawpxUiCc2sEupt7Z4u8SDAncGZpgSKm",
"name": "VRSCTEST",
"walletversion": 60000,
"blocks": 926996,
"longestchain": 926996,
"timeoffset": 0,
"connections": 5,
"tls_established": 5,
"tls_verified": 0,
"difficulty": 49081785917.1893,
"testnet": true,
"keypoololdest": 1770405903,
"keypoolsize": 101,
"paytxfee": 0.00000000,
"relayfee": 0.00000100,
"errors": ""
}
Common Errors
None typical.
Related Commands
getnetworkinfo— Detailed network infogetdeprecationinfo— Version/deprecation info — List available commandshelp
Notes
- This is one of the most useful commands for a quick status check.
blocksvslongestchain— if they differ, the node is still syncing.chainidandnameidentify the chain (VRSCTEST for testnet).- Includes PBaaS-specific fields like
notarizedrootwith cross-chain state info.
Tested On
- VRSCTEST — Block height: 926996 | Version: v1.2.14-2
#
help
Category: Control | Version: v1.2.14+
List all commands, or get help for a specified command.
Syntax
help ("command")
Parameters
Result
Examples
## List all available commands
verus -testnet help
## Get help for a specific command
verus -testnet help getinfo
Common Errors
None typical. Unknown commands return an error message.
Related Commands
— General node infogetinfo — Stop the serverstop
Notes
- Without arguments, lists all available RPC commands grouped by category.
- With a command name, returns detailed usage information including syntax, parameters, and examples.
Tested On
- VRSCTEST — Block height: 926996 | Version: v1.2.14-2
#
stop
Category: Control | Version: v1.2.14+
Stop the Verus daemon server.
Syntax
stop
Parameters
None.
Result
The server begins shutting down. Returns a confirmation message.
Examples
verus -testnet stop
Common Errors
None typical.
Related Commands
— Check server status before stoppinggetinfo — List available commandshelp
Notes
- ⚠️ This will shut down the daemon. The node will stop processing blocks and all RPC calls will fail.
- Ensure all pending operations are complete before stopping.
- The daemon performs a graceful shutdown, saving state to disk.
- Restart with
verusdor the appropriate startup command.
Tested On
- VRSCTEST — Block height: 926996 | Version: v1.2.14-2 (documented from help only; not executed)