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": []
}
Returns a list of addresses owned by the client
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": []
}
Returns a list of addresses owned by the client
The response is of type object
.
Was this page helpful?