UNPKG

@web3-onboard/vue

Version:

A collection of Vue Composables for integrating Web3-Onboard in to a Vue or Nuxt project. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardized spec compliant web3 providers for all supported wa

6 lines (5 loc) 258 B
import type { InitOptions, OnboardAPI } from '@web3-onboard/core'; import type { OnboardComposable } from './types.js'; declare const init: (options: InitOptions) => OnboardAPI; declare const useOnboard: () => OnboardComposable; export { init, useOnboard };