2.0.0-alpha.6 • Published 2 years ago

@bn-onboard/walletlink v2.0.0-alpha.6

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

@bn-onboard/walletlink

Wallet module for connecting WalletLink to Onboard V2

Install

npm i @bn-onboard/walletlink

Options

type WalletLinkOptions = {
  darkMode: boolean // default = false
}

Usage

import Onboard from '@bn-onboard/core'
import walletLinkModule from '@bn-onboard/walletlink'

// initialize the module with options
const walletLink = walletLinkModule({ darkMode: true })

// can also initialize with no options...
// const walletLink = walletLinkModule()

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

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