-
I want to only allow connect wallet with only MetaMask, but at the moment, the code showcased below seems to be overridden by either Popular or Installed. How can I make it work? const config = getDefaultConfig({
appName: "Project Name",
projectId: "YOUR_PROJECT_ID",
wallets: [
{
groupName: "Recommended",
wallets: [metaMaskWallet],
},
],
chains: [mainnet, polygon, avalanche, bsc],
ssr: true,
}); |
Beta Was this translation helpful? Give feedback.
Answered by
magiziz
Apr 9, 2024
Replies: 1 comment
-
@daviemola You can try setting |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
daviemola
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@daviemola You can try setting
multiInjectedProviderDiscovery: false
in yourgetDefaultConfig
which should avoid adding it to "Installed" section. We wouldn't advice doing so because EIP-6963 support (wallet in "Installed" sections) will have less conflicts than wallets which are in a specific groups.