0.2.7 • Published 1 year ago

@sekmet/connectors v0.2.7

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

@wagmi/connectors

Collection of connectors for wagmi.

Installation

Install the @wagmi/connectors package.

npm i @wagmi/connectors

Usage

Configure your wagmi client with connectors!

import { configureChains, createClient } from 'wagmi'

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

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

const client = createClient({
  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.