UNPKG

saepenatus

Version:

Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, mul

33 lines (22 loc) 805 B
# @web3-onboard/zeal ## Wallet module for connecting Zeal to web3-onboard See [Zeal](https://www.zeal.app/) for details. For any questions or issues related to integration with Zeal wallet do not hesitate to contact our builders via [hi@zeal.app](mailto:hi@zeal.app) OR ping us on twitter [@withzeal](https://twitter.com/withzeal) ### Install `npm i @web3-onboard/core @web3-onboard/zeal` ## Usage ```typescript 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) ```