View on GitHub

web3js-cn

web3.eth.accounts

只读属性,返回当前节点持有的帐户列表。

同步调用:

web3.eth.accounts

异步调用:

web3.eth.getAccounts(callback(error, result){ ... })

返回值:

示例:

var accounts = web3.eth.accounts;
console.log(accounts); 

教程推荐: