赞
踩
MetaMask 是一款浏览器插件钱包,简称小狐狸,可以连接以太坊实现购买NFT,只需添加至浏览器扩展程序即可使用,非常方便。
下载链接
要验证浏览器是否正在运行 MetaMask
if (typeof window.ethereum !== 'undefined') {
console.log('MetaMask已安装!');
}
当安装成功后可以直接调用MetaMask进行登录
const {ethereum} = window //把ethereum对象从window中解构出来
ethereum.request({ method: 'eth_requestAccounts' }).then()//此处可获取账户地址
method中的eth_requestAccounts其实就是Web3中方法web3.eth.requestAccounts,该方法为请求账户
( 注 注
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。