web3.shh.addPrivateKey
根据给定的私钥生成密钥对,并在保存后返回其ID。
调用:
web3.shh.addPrivateKey(privateKey, [callback])
参数:
privateKey
:String - 要导入的私钥,16进制字符串callback
:Function - 可选的回调函数,其第一个参数为错误对象,第二个对象为返回结果
返回值:
String
- 成功时返回ID,失败则返回错误信息
示例代码:
web3.shh.addPrivateKey('0x8bda3abeb454847b515fa9b404cede50b1cc63cfdeddd4999d074284b4c21e15')
.then(console.log);
> "3e22b9ffc2387e18636e0a3d0c56b023264c16e78a2adcba1303cefc685e610f"