Skip to main content

GetVersion

Return the current client version, network version, database version, and config version

Parameter​

  • id:
  • jsonrpc: json version
{
"id":"1",
"jsonrpc":"2.0"
}

Response​

  • id:
  • jsonrpc: json version
  • method:
  • result:
    • code:
      • 0 sucess
    • message: Call information
    • clientVersion: client version
    • netVersion: network version
    • configVersion: config version
    • dbVersion: Database version

Return to Example​

{
"id": "1",
"jsonrpc": "2.0",
"method": "GetVersion",
"result": {
"clientVersion": "1_1.0.0_d",
"code": 0,
"configVersion": "1.0.0",
"dbVersion": "1_1.0.0_d",
"message": "success",
"netVersion": "1"
}
}