1.0.4 • Published 7 days ago

@subwallet-connect/fortmatic v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
7 days ago

@subwallet-connect/fortmatic

Wallet module for connecting Fortmatic to web3-onboard

Install

npm i @subwallet-connect/fortmatic

Options

type FortmaticOptions = {
  apiKey: string
}

Usage

import Onboard from '@subwallet-connect/core'
import fortmaticModule from '@subwallet-connect/fortmatic'

const fortmatic = fortmaticModule({ apiKey: 'API_KEY' })

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

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