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

Body

application/json
jsonrpc
string
default:2.0
required

JSON-RPC version

method
string
default:eth_accounts
required

The method to call

id
integer
default:1
required

Request identifier

params
any[]

No parameters

Response

200 - application/json
Returns a list of addresses owned by the client
jsonrpc
string
Example:

"2.0"

id
integer
Example:

1

result
string[]

List of addresses

Example:
[]