Comment on page
eth_getUncleCountByBlockNumber
Returns the number of uncles in a block matching the give block number
QUANTITY|TAG
- hexadecimal representation of a block number, or the string "latest", "earliest" or "pending", see the default block parameter.QUANTITY
- hexadecimal representation of the number of uncles in this block.curl --location 'https://rpc.eth.gateway.fm' \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"method": "eth_getUncleCountByBlockNumber",
"params": [
"0x29c"
],
"id": 1
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": "0x1"
}
Last modified 7mo ago