@dynamic-labs/wagmi-connector 0.15.6 → 0.15.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/wagmi-connector",
3
- "version": "0.15.6",
3
+ "version": "0.15.7",
4
4
  "type": "module",
5
5
  "repository": {
6
6
  "type": "git",
@@ -12,8 +12,8 @@
12
12
  "react": "^17.0.2 || ^18.0.0",
13
13
  "ethers": "^5.7.2",
14
14
  "wagmi": "~0.10.3",
15
- "@dynamic-labs/multi-wallet": "0.15.6",
16
- "@dynamic-labs/sdk-react": "0.15.6"
15
+ "@dynamic-labs/multi-wallet": "0.15.7",
16
+ "@dynamic-labs/sdk-react": "0.15.7"
17
17
  },
18
18
  "license": "MIT",
19
19
  "module": "./index.js",
@@ -4,5 +4,5 @@ export type SyncDynamicWagmiProps = React.PropsWithChildren<{
4
4
  connector: Connector | undefined;
5
5
  }>;
6
6
  export declare const SyncDynamicWagmi: ({ children, connector, }: SyncDynamicWagmiProps) => React.FunctionComponentElement<{
7
- children: React.ReactNode;
7
+ children?: React.ReactNode;
8
8
  }>;
@@ -1,8 +0,0 @@
1
- import React, { ReactNode } from 'react';
2
- type IsBrowserProps = {
3
- children: ReactNode;
4
- };
5
- export declare const IsBrowser: ({ children }: IsBrowserProps) => React.FunctionComponentElement<{
6
- children?: React.ReactNode;
7
- }>;
8
- export {};