0.0.14 • Published 3 months ago

@wagmi-ekoios/connectors v0.0.14

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

@wagmi-ekoios/connectors

Collection of connectors for wagmi.

Installation

Install the @wagmi-ekoios/connectors package.

npm i @wagmi-ekoios/connectors

Usage

Configure your wagmi config with connectors!

import { configureChains, createConfig } from 'wagmi'

import { InjectedConnector } from '@wagmi-ekoios/connectors/injected'

const { chains, provider } = configureChains(...)

const config = createConfig({
  connectors: [
    new InjectedConnector({ chains }),
  ],
  provider,
})

If your bundler supports tree-shaking (most likely), only the used connectors will be included in the bundle, so you don't have to worry about bundle size. 😊

Connectors

Contributing

Want to add another chain to the list? Make sure you read the contributing guide first.