eth_getUncleByBlockHashAndIndex
Returns information about the 'Uncle' of a block by hash and the Uncle index position.
While this method is supported, the BSC network uses the Proof of Staked Authority ( PoSA ) consensus mechanism which doesn't involve 'Uncle' blocks.
Hence all results from eth_getUncleByBlockHashAndIndex will always return 0x0
.
Example
BLOCK HASH
- a string representing the hash (32 bytes) of a block.UNCLE INDEX POSITION
- a hex of the integer representing the uncle's index position in the block, appended with 0x such as0x0
.
Last updated