Web3 v1 nodejs调用通过RPC调用获取以太坊帐户

时间:2018-02-11 21:13:37

标签: web3

我无法理解如何使用新的Web3 v1 JS lib获取我的帐户列表。它很容易 - web3.eth.accounts。 新的JS库完全不同,我已经在这里工作了太久。文档也很糟糕。

是否有人知道如何在节点中使用Web3 v1 JS lib获取简单的帐户列表?

这会返回比帐户更多的数据,所以我在这里不知所措。 web3.eth.getAccounts()。然后(的console.log)

2 个答案:

答案 0 :(得分:0)

web3.eth.getAccounts()。then(function(accts){accounts = accts})

答案 1 :(得分:0)

我就这样做了:

$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

```