githubEdit

eth_accounts - Celo

Example code for the eth_accounts JSON-RPC method. Complete guide on how to use eth_accounts JSON-RPC in GetBlock Web3 documentation.

This method returns a list of addresses owned by the client. For public RPC endpoints like GetBlock, this typically returns an empty array since no accounts are stored server-side.

Parameters

  • None

Request examples

cURL
curl -X POST https://go.getblock.io/<ACCESS-TOKEN>/ \
-H "Content-Type: application/json" \
-d '{
  "jsonrpc": "2.0",
  "id": "getblock.io",
  "method": "eth_accounts",
  "params": []
}'

Response example

Response JSON
{
  "jsonrpc": "2.0",
  "id": "getblock.io",
  "result": []
}

Response Definition

Field
Type
Description

result

array

List of addresses (usually empty for public RPC)

Use cases

  • Check for locally stored accounts

  • Verify RPC configuration

  • Wallet compatibility checks

Error handling

Error Code
Description

-32603

Internal error

Last updated

Was this helpful?