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
}