OP Mainnet
eth_getBalance10 credits
Returns the balance of the account at the given address.
Parameters
| Name | Type | Description |
|---|---|---|
| address | DATA | 20-byte address. |
| block | QUANTITY | TAG | Block number or tag (latest, pending, …). |
Returns
Type
QUANTITY
Balance in wei as hex.
Code examples
curl https://optimism-mainnet.rpcnode.dev/7c9e6679-7425-40de-944b-e07fc1f90ae7 \
-X POST \
-H 'content-type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "eth_getBalance",
"params": [
"0x0000000000000000000000000000000000000000",
"latest"
]
}'