如何在 MetaMask 上触发更改区块链网络请求
Posted
技术标签:
【中文标题】如何在 MetaMask 上触发更改区块链网络请求【英文标题】:How to trigger change blockchain network request on MetaMask 【发布时间】:2021-09-16 00:17:49 【问题描述】:我正在使用 web3 进行我的第一个 dapp 测试,我想这样做,如果尚未选择,MetaMask 会提示用户将网络更改为 Binance (BSC) 网络,就像这里一样:
如何触发这样的请求?
【问题讨论】:
【参考方案1】:终于找到答案了:
await window.ethereum.request(
method: 'wallet_switchEthereumChain',
params: [ chainId: '0x61' ], // chainId must be in hexadecimal numbers
);
更全面的答案是检查 MetaMask 是否已安装,是否已安装您的 Dapp 想要连接的链,以及是否未安装:
// Check if MetaMask is installed
// MetaMask injects the global API into window.ethereum
if (window.ethereum)
try
// check if the chain to connect to is installed
await window.ethereum.request(
method: 'wallet_switchEthereumChain',
params: [ chainId: '0x61' ], // chainId must be in hexadecimal numbers
);
catch (error)
// This error code indicates that the chain has not been added to MetaMask
// if it is not, then install it into the user MetaMask
if (error.code === 4902)
try
await window.ethereum.request(
method: 'wallet_addEthereumChain',
params: [
chainId: '0x61',
rpcUrl: 'https://data-seed-prebsc-1-s1.binance.org:8545/',
,
],
);
catch (addError)
console.error(addError);
console.error(error);
else
// if no window.ethereum then MetaMask is not installed
alert('MetaMask is not installed. Please consider installing it: https://metamask.io/download.html');
【讨论】:
谢谢,一直在找这个,不知道怎么改,终于找到你的答案了。【参考方案2】:async switchEthereumChain()
try
await window.ethereum.request(
method: 'wallet_switchEthereumChain',
params: [ chainId: '0x61' ],
);
catch (e: any)
if (e.code === 4902)
try
await window.ethereum.request(
method: 'wallet_addEthereumChain',
params: [
chainId: '0x61',
chainName: 'Smart Chain - Testnet',
nativeCurrency:
name: 'Binance',
symbol: 'BNB', // 2-6 characters long
decimals: 18
,
blockExplorerUrls: ['https://testnet.bscscan.com'],
rpcUrls: ['https://data-seed-prebsc-1-s1.binance.org:8545/'],
,
],
);
catch (addError)
console.error(addError);
// console.error(e)
虽然上面的答案对我不起作用,但它给了我一个错误 Unsupported keys:\nrpcUrl" 这是因为它应该是字符串数组中的 rpcUrls 而不是 rpcUrl,也需要blockExplorerUrls 的注释。
你可以找到metamask的文档here
【讨论】:
以上是关于如何在 MetaMask 上触发更改区块链网络请求的主要内容,如果未能解决你的问题,请参考以下文章