Docs
Pulsechain

eth_coinbase - Get coinbase address

Get coinbase address on PulseChain. Essential for blockchain interaction.

Get coinbase address on the PulseChain network.

Request Parameters

Request

This method accepts no parameters.

Response Body

Response
resultOBJECT

`DATA`, 20 bytes - The coinbase address. On PulseChain, this returns the zero address as there is no mining.

Implementation Example

Bash
curl -X POST https://api-pulse-mainnet.n.dwellir.com/YOUR_API_KEY \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "method": "eth_coinbase",
    "params": [],
    "id": 1
  }'
JavaScript
const response = await fetch('https://api-pulse-mainnet.n.dwellir.com/YOUR_API_KEY', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({
    jsonrpc: '2.0',
    method: 'eth_coinbase',
    params: [],
    id: 1
  })
});

const data = await response.json();
console.log(data.result);

On this page