forked from blocknative/web3-onboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Fortmatic
Thiendekaco edited this page Apr 4, 2024
·
2 revisions
npm i @subwallet-connect/fortmatic
type FortmaticOptions = {
apiKey: string
}
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)