2.0.14 • Published 2 years ago

@0xzoz/tallyho v2.0.14

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

@web3-onboard/tallyho

Wallet module for connecting Tally Ho Wallet to web3-onboard

See Tally Ho Wallet 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 talltHoWalletSdk = tallyHoWalletModule()

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

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