以太坊JSON RPC手册

net_peerCount

返回当前客户端所连接的对端节点数量。

参数

返回值

QUANTITY - 整数,所连接对端节点旳数量

示例代码

请求:

curl -X POST --data '{"jsonrpc":"2.0","method":"net_peerCount","params":[],"id":74}'

响应:

{
  "id":74,
  "jsonrpc": "2.0",
  "result": "0x2" // 2
}