Skip to content
Thiendekaco edited this page Apr 4, 2024 · 2 revisions

@subwallet-connect/taho (Taho previously named Tally Ho wallet)

Wallet module for connecting Taho (Previously named Tally Ho wallet) Wallet to SubConnect

See Taho Developer Docs

Install

npm i @subwallet-connect/taho

Usage

import Onboard from '@subwallet-connect/core'
import tahoWalletModule from '@subwallet-connect/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)