Bắt đầu với TheRPC
Tham khảo API
Ethereum API
Core API
Hướng dẫn
Ethereum/Core API/eth_getUncleCountByBlockNumber

eth_getUncleCountByBlockNumber

The eth_getUncleCountByBlockNumber method returns the number of uncles (ommer blocks) in a block specified by the block number or tag. Uncle blocks are valid blocks that weren't included in the main chain but are still referenced and partially rewarded in Ethereum.

Use Cases

  • Real-time network monitoring
  • Block explorer functionality
  • Mining reward calculations
  • Network health assessment
  • Historical data analysis
  • Uncle rate tracking
  • Mining pool operations
  • Consensus research

Method Details

This method returns a count of uncle blocks for a specific block identified by its number or a block tag.

Tham số:

Block number in hex format or tags: latest, earliest, pending, safe, finalized

Trả về:

Integer of the number of uncles in this block (hexadecimal)

Response Example

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": "0x0" // 0 uncles in this block
}

Block Tag Support

The blockNumber parameter accepts several special tags:

  • latest: The most recent block
  • earliest: Genesis block
  • pending: Currently pending block
  • safe: Latest safe block
  • finalized: Latest finalized block

See also

Giúp chúng tôi trở nên tốt hơn!
Chia sẻ trang này và giúp chúng tôi tạo ra sản phẩm tốt hơn cho bạn.