Skip to main content

system_version

Description#

Returns the full software version string reported by the connected node. Combine this with runtime metadata to ensure nodes are upgraded before pushing runtime-dependent features.

Parameters#

This method does not require any parameters.

Returns#

TypeDescription
stringNode version string (implementation dependent)

Request Example#

{
"jsonrpc": "2.0",
"method": "system_version",
"params": [],
"id": 1
}

Response Example#

{
"jsonrpc": "2.0",
"result": "5.46.0-8c0b05fffcc",
"id": 1
}

Code Examples#

curl https://api-astar.n.dwellir.com/YOUR_API_KEY \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "system_version",
"params": [],
"id": 1
}'