web3.eth.net.getId([callback])
web3.bzz.net.getId([callback])
web3.shh.net.getId([callback])
获取当前的网络 ID.
none
Promise
返回 Number
: 网络 ID.
web3.eth.net.getId()
.then(console.log);
> 1
web3.eth.net.isListening([callback])
web3.bzz.net.isListening([callback])
web3.shh.net.isListening([callback])
查看当前节点是否正在连接其它对等节点。
none
Promise
返回 Boolean
web3.eth.isListening()
.then(console.log);
> true
web3.eth.net.getPeerCount([callback])
web3.bzz.net.getPeerCount([callback])
web3.shh.net.getPeerCount([callback])
获取正在连接的对等节点的数量。
none
Promise
返回 Number
web3.eth.getPeerCount()
.then(console.log);
> 25