如果你希望马上开始学习以太坊DApp开发,可以访问汇智网提供的出色的在线互动教程:
只读属性,返回当前节点持有的帐户列表。
同步调用:
web3.eth.accounts
异步调用:
web3.eth.getAccounts(callback(error, result){ ... })
返回值:
Array
- 节点持有的帐户列表。
示例:
var accounts = web3.eth.accounts;
console.log(accounts);
来源:oschina
链接:https://my.oschina.net/u/3794778/blog/1800236