/** Optional object provided to the initiation of the wallet connector. * When not included, the wallet connector service connects to FinoaConnect production systems. * @field {url} URL of the FinoaConnect backend systems to be used * @field {labelSuffix} arbitrary string label to denote the context of the URL field */exportinterfaceFinoaWalletOption{url?:stringlabelSuffix?:string}
import Onboard from'@web3-onboard/core'import finoaConnectModule from'@web3-onboard/finoaconnect'// initialize the module with optionsconst finoaConnect =finoaConnectModule()const onboard =Onboard({// ... other Onboard optionswallets: [ finoaConnect//... other wallets ]})const connectedWallets =await onboard.connectWallet()console.log(connectedWallets)