npm i @web3-onboard/taho
import Onboard from '@web3-onboard/core'
import tahoWalletModule from '@web3-onboard/taho'
// initialize the module with options
const tahoWalletSdk = tahoWalletModule()
const onboard = Onboard({
// ... other Onboard options
wallets: [
tahoWalletModule()
//... other wallets
]
})
const connectedWallets = await onboard.connectWallet()
console.log(connectedWallets)