ethers.js Metamask和CoinbaseWallet,TronLink钱包连接方式

燕和同
2023-12-01

提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档


一、Metamask和CoinbaseWallet钱包连接方式

const provider = new ethers.providers.Web3Provider(window.ethereum);
const accounts = await provider.send("eth_requestAccounts", []);//返回accounts [0]是钱包地址

二、TronLink钱包连接方式

const provider = new ethers.providers.Web3Provider(window.ethereum);
const accounts = await window.tronLink.request({method: 'tron_requestAccounts'})//返回accounts [0]是钱包地址

完成,年轻的程序员,大佬勿喷,希望对大家有用,有问题可以留言。

 类似资料: