web3.eth.accounts undefined 发布时间: 2018 12 19
在truffle里面用
accounts =await web3.eth.getAccounts()
就可以得到账户数组,在前面加await是因为getaccounts 是异步函数
在控制台函数转账,函数参数为
({from:accounts[0],value:web3.utils.toWei('2','ether')})
【web3.eth.accounts undefined】具体可以看web3.utils库的用法
推荐阅读
- PBFT 转载2
- 阅读比特币白皮书(二)
- 区块链|ethereum和eos的收费模型比较
- web3.py|使用Web3.py连接Ethereum
- blockchain|共识算法-PBFT
- 2018|Base58编码解码Go实现
- 共识算法|拜占庭将军问题的深入思考