web3.eth.accounts
包中的函数用于创建以太坊账户以及对数据和交易的签名。
这个包还没有进行审计,使用时有潜在的不安全因素。要注意正确清理内存、安全保存 私钥,并且在上线生产环境之前进行测试,保证交易的发送和接收功能正常。
可以单独使用这个包:
` var Accounts = require('web3-eth-accounts');
// Passing in the eth or web3 package is necessary to allow retrieving chainId, gasPrice and nonce automatically // for accounts.signTransaction(). var accounts = new Accounts('ws://localhost:8546'); ``