curl --request POST \
--url https://base-mainnet.core.chainstack.com/2fc1de7f08c0465f6a28e3c355e0cb14 \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"method": "eth_getUncleCountByBlockHash",
"id": 1,
"params": [
"0x07fcc7d5f86839e12afa756e979de05812b5341f936b850c9409aa0938819b30"
]
}'
{
"jsonrpc": "<string>",
"id": 123,
"result": "<string>"
}
curl --request POST \
--url https://base-mainnet.core.chainstack.com/2fc1de7f08c0465f6a28e3c355e0cb14 \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"method": "eth_getUncleCountByBlockHash",
"id": 1,
"params": [
"0x07fcc7d5f86839e12afa756e979de05812b5341f936b850c9409aa0938819b30"
]
}'
{
"jsonrpc": "<string>",
"id": 123,
"result": "<string>"
}
hash
— the hash of the block for which the uncle count is being queried, as a hexadecimal string.result
— the number of uncles in the specified block, encoded as a hexadecimal string. This count includes all uncles that were referenced by the block when it was mined.eth_getUncleCountByBlockHash
method is useful for applications that analyze blockchain security and decentralization aspects, such as block explorers or network analysis tools. It can help these applications understand the level of block competition and the rate at which uncles are included in the blockchain.The uncle count of the block by hash
The response is of type object
.