Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 496 Bytes

README.md

File metadata and controls

27 lines (19 loc) · 496 Bytes

@web3-onboard/keepkey

Wallet module for connecting KeepKey hardware wallets to web3-onboard

Install

npm i @web3-onboard/keepkey

Usage

import Onboard from '@web3-onboard/core'
import keepkeyModule from '@web3-onboard/keepkey'

const keepkey = keepkeyModule()

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

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