MetaMask
wallet_switchEthereumChain
Summary: Switches the wallet's active Ethereum chain.
Requests that the wallet switches its active Ethereum chain. Specified by EIP-3326.
Parameters
Chain
objectObject containing the chain ID to switch to.
Returns
Null response
nullThis method returns null
if the active chain is switched.
Errors
Code
Message
4902
Unrecognized chain ID. Try adding the chain using wallet_addEthereumChain first.
Customize request
Parameter
Value
Connect your MetaMask wallet to run requests successfully.
Request
await window.ethereum.request({
"method": "wallet_switchEthereumChain",
"params": [
{
chainId: "0x64"
}
],
});
Example response
null