提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档文章来源:https://www.toymoban.com/news/detail-546865.html
一、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]是钱包地址
完成,年轻的程序员,大佬勿喷,希望对大家有用,有问题可以留言。文章来源地址https://www.toymoban.com/news/detail-546865.html
到了这里,关于ethers.js Metamask和CoinbaseWallet,TronLink钱包连接方式的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!