Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在旧版本的 web3 中web3.eth.accounts[0]返回一个特定的帐户。我用它作为投票函数的参数,如下所示:
web3.eth.accounts[0]
app.vote(1, { from: web3.eth.accounts[0]})
从1.2.x版本开始, web3 使用web3.eth.getAccounts()返回节点控制的帐户列表。
web3.eth.getAccounts()
如何像以前使用此 web3 版本一样获得特定帐户?
web3.eth.defaultAccount;
不明确的
// 设置默认账户 web3.eth.defaultAccount = '0x11f4d0A3c12e86B4b5F39B213F7E19D048276DAe';