Skip to content

Latest commit

 

History

History
50 lines (29 loc) · 935 Bytes

web3-eth-net.rst

File metadata and controls

50 lines (29 loc) · 935 Bytes

web3.eth.net

包含获取当前网络信息的一些函数。



getNetworkType

web3.eth.net.getNetworkType([callback])

通过比较创世区块哈希值来猜测当前节点连的是哪条链。

Note

推荐使用 :ref:`web3.eth.getChainId <eth-chainId>` 来检测现在所连的链。

返回值

Promise<String>:
  • "main" 代表主网
  • "morden" 代表 morden 测试网
  • "ropsten" 代表 ropsten 测试网
  • "private" 表示检测不到当前网络

例子

web3.eth.net.getNetworkType()
.then(console.log);
> "main"