You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
importOnboardfrom'@subwallet-connect/core'importcoinbaseWalletModulefrom'@subwallet-connect/coinbase'// initialize the module with optionsconstcoinbaseWalletSdk=coinbaseWalletModule({darkMode: true})// can also initialize with no options...// const coinbaseWalletSdk = coinbaseWalletModule()constonboard=Onboard({// ... other Onboard optionswallets: [coinbaseWalletSdk//... other wallets]})constconnectedWallets=awaitonboard.connectWallet()console.log(connectedWallets)