Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 657 Bytes

README.md

File metadata and controls

30 lines (21 loc) · 657 Bytes

@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)