Skip to content

Option to not show installed wallets when using custom wallet list #2127

Answered by magiziz
agnideepGhosh asked this question in Q&A
Discussion options

You must be logged in to vote

@agnideepGhosh Yes that's possible. You can set multiInjectedProviderDiscovery to false in your wagmi config.

Example with createConfig.

import { connectorsForWallets } from '@rainbow-me/rainbowkit';
import {
  rainbowWallet,
  walletConnectWallet,
} from '@rainbow-me/rainbowkit/wallets';
import { createConfig, http } from 'wagmi';
import { mainnet } from 'wagmi/chains';

const connectors = connectorsForWallets(
  [
    {
      groupName: 'Recommended',
      wallets: [rainbowWallet, walletConnectWallet],
    },
  ],
  {
    appName: 'My RainbowKit App',
    projectId: 'YOUR_PROJECT_ID',
  }
);

const config = createConfig({
  connectors,
  multiInjectedProviderDiscovery: false,
  chains: [

Replies: 2 comments 17 replies

Comment options

You must be logged in to vote
15 replies
@kylehoang92
Comment options

@DanielSinclair
Comment options

@kylehoang92
Comment options

@DanielSinclair
Comment options

@kylehoang92
Comment options

Answer selected by agnideepGhosh
Comment options

You must be logged in to vote
2 replies
@DanielSinclair
Comment options

@Adebesin-Cell
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
5 participants