eth_coinbase - Soneium
eth_coinbase. Returns the address of the mining reward recipient set by the node.
eth_coinbase - Soneium [Value: 20CU]
Returns the address of the client's coinbase
Use cases
- Identify the coinbase address for reward collection
 - Verify mining rewards recipient address on the node
 - Check the default account for mining payouts
 
Constraints
- Node must be running in mining mode
 - Requires valid and connected node
 - Coinbase address must be properly configured
 
Unlock Access to 100+ chains
Boost your app's speed and reliability with dRPC - get your access API key
Language
Request
Examples
curl --request POST \
    --url https://soneium.drpc.org \
    --header 'accept: application/json' \
    --header 'content-type: application/json' \
    --data '
{
 "id": 1,
 "jsonrpc": "2.0",
 "method": "eth_coinbase"
}
'Response
200
{
  "id":64,
  "jsonrpc": "2.0",
  "result": "0x407d73d8a49eeb85d32cf465507dd71d507100c1"
}Request params
idinteger
jsonrpcstring
methodstring
Response
200
Response params
object
idinteger
jsonrpcstring
resultstring
Returns the client coinbase address.