RPC Endpoint

https://rpc.pulsechain.com

Use this endpoint to interact with the PulseChain network using JSON-RPC.

Supported Methods

eth_blockNumber
Returns the latest block number
eth_getBlockByNumber
Returns information about a block by block number
eth_getTransactionByHash
Returns information about a transaction
eth_getBalance
Returns the balance of an address
eth_call
Execute a smart contract call (for ERC-20 balances)
eth_gasPrice
Returns the current gas price

Example Request

curl -X POST https://rpc.pulsechain.com \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "method": "eth_blockNumber",
    "params": [],
    "id": 1
  }'