eth_accounts

Returns Ethereum account addresses owned by the client

Request
Examples
curl --request POST \
    --url https://rpc.xone.org \
    --header 'accept: application/json' \
    --header 'content-type: application/json' \
    --data '
{
 "id": 1,
 "jsonrpc": "2.0",
 "method": "eth_accounts"
}
'
Response
200 OK
{
    "jsonrpc": "2.0",
    "id": 1,
    "result": []
}

Request params

NameTypeDescription
idintegerRequest identifier
jsonrpcstringJSON-RPC version
methodstringAPI method name
ParametersThis method does not accept any parameters. 

Response

200
NameTypeDescription
Parametersobject 
idinteger
jsonrpcstring
resultarray_of_stringsAn array of account addresses, each address is represented as a string.