Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 729 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 729 Bytes

@web3-onboard/tallyho (now named Taho wallet)

(Deprecated) Wallet module for connecting Tally Ho Wallet to web3-onboard

Use @web3-onboard/taho

See Taho Developer Docs

Install

npm i @web3-onboard/tallyho

Usage

import Onboard from '@web3-onboard/core'
import tallyHoWalletModule from '@web3-onboard/tallyho'

// initialize the module with options
const tallyHoWalletSdk = tallyHoWalletModule()

const onboard = Onboard({
  // ... other Onboard options
  wallets: [
    tallyHoWalletModule()
    //... other wallets
  ]
})

const connectedWallets = await onboard.connectWallet()
console.log(connectedWallets)