1、我安装了MetaMask之后,可以创建很多Account 2、web3.eth.accounts.create() 也可以创建Account 3、web3.eth.accounts.wallet.create() 也可创建Account
另外,我调用web3.eth.getAccounts() 只返回了MetaMask选中的Account。
那么,请问,这些Account之间有什么关系?有什么区别?
非常感谢~
没区别,都是有效的账号。
web3.eth.getAccounts() 是根据 provider 来获取账号, 你应该是在前端网页上调用的,这里连接了 MetaMask 的provider。