web3.eth.accounts

优质
小牛编辑
128浏览
2023-12-01

同步方式:

web3.eth.accounts

异步方式:

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

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

返回值:

Array - 节点持有的帐户列表。

示例:

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