CoreWalletAdditionalOptions
type CoreWalletAdditionalOptions = { projectId?: string; qrcode?: boolean; qrModalOptions?: QRModalOptions;};
When connecting Core wallet using the QR Code - Wallet Connect connector is used which requires a project id. This project id is Your project’s unique identifier for wallet connect that can be obtained at cloud.walletconnect.com.
https://docs.walletconnect.com/2.0/web3modal/options#projectid-required
type projectId = string;
Whether to open the default Wallet Connect QR code Modal for connecting to Core app on mobile if Core wallet is not injected when calling connect().
type qrcode = boolean;
options to customize the Wallet Connect QR Code Modal ( only relevant when qrcode is true )
https://docs.walletconnect.com/2.0/web3modal/options
type qrModalOptions = QRModalOptions;