eth_getUncleCountByBlockNumber - Ethereum
eth_getUncleCountByBlockNumber. Retrieves the number of uncle blocks for a specific block identified by its number
eth_getUncleCountByBlockNumber - ethereum [Value: 15CU]
Retrieves the number of uncle blocks for a specific block identified by its number
Use cases
- Count uncle blocks for specific block number
- Verify uncle block count by block number
- Analyze uncle blocks in a specific block
Constraints
- Requires valid block number input
- Node synchronization with blockchain necessary
- Accurate block number essential for results
Unlock Access to 50+ chains
Boost your app's speed and reliability with dRPC - get your access API key
Language
Request
Examples
curl https://eth.drpc.org \
-X POST \
-H "Content-Type: application/json" \
--data '{"method":"eth_getUncleCountByBlockNumber","params":["0xc5043f"],"id":1,"jsonrpc":"2.0"}'
Response
200
{
"jsonrpc": "2.0",
"id": 1,
"result": "0x0"
}
Request params
idinteger
jsonrpcstring
methodstring
array of strings
blockNumberstring
(optional) Block number as an integer, or string
- latest [default] - The most recent block in the blockchain (default).
- earliest - The first block, also known as the genesis block.
- pending - Transactions that have been broadcast but not yet included in a block.
Response
200
The number of uncle blocks associated with the specified blockResponse params
string
unclesstring