1.0.3 • Published 1 year ago

@lx70770-cli-dev/wagmi-connector v1.0.3

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

wagmi-connector

Installation

  npm install @unipasswallet/wagmi-connector

or

  yarn add @unipasswallet/wagmi-connector

Parameters

  • chains -- Chains supported by app. This is the same parameter as would be passed to other RainbowKit wallets..

  • options.connect -- Connection options for the default networkId, name of the app.

  • options.connect.chainId -- Default chainId.

  • options.connect.returnEmail -- If true, email will return when connect function been called.

  • options.connect.appSettings -- Config appName, appIcon and theme.

Usage

  import { UniPassConnector } from "@unipasswallet/wagmi-connector'

  const unipass = new UniPassConnector({
    options: {
      connect: {
        chainId: 80001,
        returnEmail: false,
        appSettings: {
          appName: "wagmi demo",
          appIcon: "your icon url",
          theme: UniPassTheme.dark,
        },
      },
    },
  });

  const connectors = [
    unipass,
    new MetaMaskConnector({
      chains,
    }),
  ];
  
  const wagmiClient = createClient({
    autoConnect: false,
    connectors,
    provider,
  });

Example

A demo app for Wagmi is available here