我无法理解如何使用新的 Web3 v1 JS lib 获取我的帐户列表。它曾经很容易 - web3.eth.accounts。新的 JS 库完全不同,我在这方面已经太久了。文档也很糟糕。
有谁知道如何在节点中使用 Web3 v1 JS lib 获取简单的帐户列表?
这会返回比帐户更多的数据,所以我在这里不知所措。web3.eth.getAccounts().then(console.log)
我无法理解如何使用新的 Web3 v1 JS lib 获取我的帐户列表。它曾经很容易 - web3.eth.accounts。新的 JS 库完全不同,我在这方面已经太久了。文档也很糟糕。
有谁知道如何在节点中使用 Web3 v1 JS lib 获取简单的帐户列表?
这会返回比帐户更多的数据,所以我在这里不知所措。web3.eth.getAccounts().then(console.log)
web3.eth.getAccounts().then(function(accts) { account = accts } )
我是这样做的:
$node -v v8.10.0
$node
> web3.version
'1.0.0-beta.30'
> web3.eth.getAccounts().then(function(accts) { accounts = accts } ) Promise
{
_bitField: 0,
_fulfillmentHandler0: undefined,
_rejectionHandler0: undefined,
_promise0: undefined,
_receiver0: undefined
}
> web3.eth.accounts[0]
undefined
> web3.eth.accounts
undefined
> web3.eth.accts
undefined
```