walletConnectConfigOptions
type walletConnectConfigOptions = { projectId?: string; qrModal?: "custom" | "walletConnect"; recommended?: boolean;};
Your project’s unique identifier that can be obtained at https://cloud.walletconnect.com/
Enables following functionalities within Web3Modal: wallet and chain logos, optional WalletConnect RPC, support for all wallets from our Explorer and WalletConnect v2 support. Defaults to undefined.
https://docs.walletconnect.com/2.0/web3modal/options#projectid-required
type projectId = string;
Specify wheher a custom QR Modal or the Official WalletConnect Modal should be used on desktop. The custom screen has an option to open the official WalletConnect Modal too.
Note that the official WalletConnect Modal is always used on mobile devices.
The default is "custom"
( for desktop )
type qrModal = "custom" | "walletConnect";
options to customize QR Modal.
https://docs.walletconnect.com/2.0/web3modal/options
If true, the wallet will be tagged as "recommended" in ConnectWallet Modal
type recommended = boolean;