Ether

如何使用 ethers.js 列出所有帳戶

  • June 2, 2022

web3.js有一個列出所有帳戶的功能,但是,我們如何列出ethers.js中的所有帳戶?

您可以使用以下listAccounts方法:

const provider = new ethers.providers.Web3Provider(window.ethereum);
const accounts = await provider.listAccounts();

ProvidersAPI 將為您提供幫助。請參閱:https ://docs.ethers.io/v3/api-providers.html#web3provider

Web3Provider 下的 listAccounts() 可能是您正在尋找的。

引用自:https://ethereum.stackexchange.com/questions/129410