2.0.4 • Published 12 months ago

@web3-onboard/zeal v2.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
12 months ago

@web3-onboard/zeal

Wallet module for connecting Zeal to web3-onboard

See Zeal for details.

For any questions or issues related to integration with Zeal wallet do not hesitate to contact our builders via hi@zeal.app OR ping us on twitter @withzeal

Install

npm i @web3-onboard/core @web3-onboard/zeal

Usage

import Onboard from '@web3-onboard/core'
import zealWalletModule from '@web3-onboard/zeal'

// initialize the module with options
const zealWalletSdk = zealWalletModule()

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

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