WalletConnect Customization

I have successfully integrated walletConnect at frontend using react-moralis.
How can we customize the list of supported wallets in the desktop section.

there could be some parameters for that, it may not work for all operating systems

Can you elaborate about the parameters and how to use them in code.

There is a similar post in the past. I don’t remember now. It should be specific to wallet connect

Okay ,Please share the link if you found it anywhere.Thanks .

You can use mobileLinks for using specific wallet names. But it is only for mobile apps not for desktop.

await authenticate({ 
                provider: "walletconnect", 
                mobileLinks: [
                  "rainbow",
                  "metamask",
                  "argent",
                  "trust",
                  "imtoken",
                  "pillar",
                ] 
            })
1 Like

Actaully I need it for desktop wallets. Will it work with desktopLink option?

It seems like the Authentication function only accepts mobileLinks parameter. There is no parameter to customize desktop apps with the authenticate function

1 Like