以太坊JSON RPC手册

在线工具推荐: Three.js AI纹理开发包 - YOLO合成数据生成器 - GLTF/GLB在线编辑 - 3D模型格式在线转换 - 可编程3D场景编辑器

eth_getBlockTransactionCountByNumber

返回指定块内的交易数量,使用块编号指定块。

参数

QUANTITY|TAG - 整数块编号,或字符串"earliest"、"latest"或"pending"

params: [
   '0xe8', // 232
]

返回值

QUANTITY - 指定块内的交易数量

示例代码

请求:

curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getBlockTransactionCountByNumber","params":["0xe8"],"id":1}'

响应:

{
  "id":1,
  "jsonrpc": "2.0",
  "result": "0xa" // 10
}