pulsechain.box
eth

eth_getUncleCountByBlockHash

Returns the number of uncles in a block identified by block hash.

Returns the number of uncles in a block identified by block hash.

Parameters

#TypeDescription
1stringBlock hash (32-byte hex).

Returns

TypeDescription
stringUncle count (hex).

Example

curl -s -X POST https://rpc.pulsechain.box \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "method": "eth_getUncleCountByBlockHash",
    "params": ["0x9ce9d9c533b1e3d23f5a67f999fd0848f23d3837c12ca0296f134bcfe2074008"],
    "id": 1
  }'
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": "0x0"
}
TRY IT

Notes

  • Complement to eth_getUncleCountByBlockNumber — same data, different lookup key.
  • PulseChain uses proof-of-stake, so uncle count is always 0x0 for post-merge blocks.
Copyright © 2026 AvecdrA. Made with love.