@wagmi/connectors 1.0.0-next.2 → 1.0.0-next.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -12,16 +12,16 @@ npm i @wagmi/connectors
12
12
 
13
13
  ## Usage
14
14
 
15
- Configure your wagmi client with connectors!
15
+ Configure your wagmi config with connectors!
16
16
 
17
17
  ```tsx
18
- import { configureChains, createClient } from 'wagmi'
18
+ import { configureChains, createConfig } from 'wagmi'
19
19
 
20
20
  import { InjectedConnector } from '@wagmi/connectors/injected'
21
21
 
22
22
  const { chains, provider } = configureChains(...)
23
23
 
24
- const client = createClient({
24
+ const config = createConfig({
25
25
  connectors: [
26
26
  new InjectedConnector({ chains }),
27
27
  ],