eth_getBlockTransactionCountByNumber

根据区块号返回区块中的交易数量。

Parameters

  • BLOCK-NUMBER [必须] 表示区块号的十六进制整数,或字符串latest, earliest or pending默认块号参数

Request

curl https://eth-mainnet.solarpath.io/v1/YOUR-API-KEY \
    -X POST \
    -H "Content-Type: application/json" \
    -d '{"jsonrpc": "2.0", "id": 1, "method": "eth_getBlockTransactionCountByNumber", "params": ["0x658a13"]}'

Response

{
  "id": 1,
  "jsonrpc": "2.0",
  "result": "0xc3"
}

最后更新于