web3.shh.hasKeyPair - 检查节点是否有指定密钥对

优质
小牛编辑
125浏览
2023-12-01

检查whisper节点的私钥是否匹配给定的ID。

调用:

web3.shh.hasKeyPair(id, [callback])

参数:

  • id:String - 密钥对ID,由shh.newKeyPair()和shh.addPrivateKey()返回
  • callback:Function - 可选的回调函数,其第一个参数为错误对象,第二个参数为结果

返回值:

Boolean - 如果节点密钥对匹配指定的id,则返回true,否则返回false

示例代码:

web3.shh.hasKeyPair('fe22b9ffc2387e18636e0a3d0c56b023264c16e78a2adcba1303cefc685e610f')
.then(console.log);
> true