eth_getUncleCountByBlockNumber
Returns the number of uncles in a block from a block matching the given block number.
Params
- a string array containing (required):QUANTITY|TAG(hex string|string, required)
- integer block number in hex string format, or the string"latest"
,"earliest"
or"pending"
, see the default block parameter.
QUANTITY(string)
- integer of the number of uncles in this block.curl
TypeScript
curl https://api.blockvision.org/v1/<api key> \
-X POST \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "eth_getUncleCountByBlockNumber",
"params": [
"0xe8"
],
"id": 42
}'
import { BlockVisionProvider, BvNetwork } from 'blockvision.js'
// Optional parameters, but default to eth-mainnet and default api-key.
const bv = new BlockVisionProvider(BvNetwork.OPT_MAINNET)
// Access BlockVision Enhanced API requests
bv.getUncleCount("0xe8").then(console.log)
{
"jsonrpc": "2.0",
"id": 42,
"result": "0x0"
}
Last modified 1mo ago