POST
/
web3_clientVersion
curl --request POST \
  --url https://api.mainnet.abs.xyz/web3_clientVersion \
  --header 'Content-Type: application/json' \
  --data '{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "web3_clientVersion",
  "params": []
}'
{
  "jsonrpc": "2.0",
  "result": "Abstract/v2.0",
  "id": 1
}

Body

application/json
jsonrpc
string
default:2.0
required

JSON-RPC version

method
string
default:web3_clientVersion
required

The method to call

id
integer
default:1
required

Request identifier

params
any[]

No parameters

Response

200 - application/json
Returns client version information
jsonrpc
string
Example:

"2.0"

id
integer
Example:

1

result
string

Client version string

Example:

"Abstract/v2.0"