@wagmi/connectors 4.0.0-alpha.0 → 4.0.0-alpha.2

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.
@@ -1,2 +1,2 @@
1
- export const version = '4.0.0-alpha.0';
1
+ export const version = '4.0.0-alpha.2';
2
2
  //# sourceMappingURL=version.js.map
@@ -0,0 +1,7 @@
1
+ export { type CoinbaseWalletParameters, coinbaseWallet, } from '../coinbaseWallet.js';
2
+ export { type InjectedParameters, injected } from '../injected.js';
3
+ export { type LedgerParameters, ledger } from '../ledger.js';
4
+ export { type SafeParameters, safe } from '../safe.js';
5
+ export { type WalletConnectParameters, walletConnect, } from '../walletConnect.js';
6
+ export { version } from '../version.js';
7
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/exports/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,wBAAwB,EAC7B,cAAc,GACf,MAAM,sBAAsB,CAAA;AAE7B,OAAO,EAAE,KAAK,kBAAkB,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AAElE,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,EAAE,MAAM,cAAc,CAAA;AAE5D,OAAO,EAAE,KAAK,cAAc,EAAE,IAAI,EAAE,MAAM,YAAY,CAAA;AAEtD,OAAO,EACL,KAAK,uBAAuB,EAC5B,aAAa,GACd,MAAM,qBAAqB,CAAA;AAE5B,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAA"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.test-d.d.ts","sourceRoot":"","sources":["../../../src/exports/index.test-d.ts"],"names":[],"mappings":""}
@@ -1,2 +1,2 @@
1
- export declare const version = "4.0.0-alpha.0";
1
+ export declare const version = "4.0.0-alpha.2";
2
2
  //# sourceMappingURL=version.d.ts.map
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wagmi/connectors",
3
- "description": "A collection of connectors for wagmi",
4
- "version": "4.0.0-alpha.0",
3
+ "description": "Collection of connectors for Wagmi",
4
+ "version": "4.0.0-alpha.2",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
@@ -17,20 +17,20 @@
17
17
  ],
18
18
  "sideEffects": false,
19
19
  "type": "module",
20
- "main": "./dist/esm/index.js",
21
- "types": "./dist/types/index.d.ts",
22
- "typings": "./dist/types/index.d.ts",
20
+ "main": "./dist/esm/exports/index.js",
21
+ "types": "./dist/types/exports/index.d.ts",
22
+ "typings": "./dist/types/exports/index.d.ts",
23
23
  "exports": {
24
24
  ".": {
25
- "types": "./dist/types/index.d.ts",
26
- "default": "./dist/esm/index.js"
25
+ "types": "./dist/types/exports/index.d.ts",
26
+ "default": "./dist/esm/exports/index.js"
27
27
  },
28
28
  "./package.json": "./package.json"
29
29
  },
30
30
  "peerDependencies": {
31
31
  "typescript": ">=5",
32
- "viem": ">2.0.0-alpha.0",
33
- "@wagmi/core": "2.0.0-alpha.0"
32
+ "viem": ">2.0.0-alpha.9",
33
+ "@wagmi/core": "2.0.0-alpha.2"
34
34
  },
35
35
  "peerDependenciesMeta": {
36
36
  "typescript": {
@@ -38,21 +38,21 @@
38
38
  }
39
39
  },
40
40
  "dependencies": {
41
- "@coinbase/wallet-sdk": "3.8.0-beta.2",
41
+ "@coinbase/wallet-sdk": "3.9.0-canary.2",
42
42
  "@ledgerhq/connect-kit-loader": "^1.1.2",
43
43
  "@safe-global/safe-apps-provider": "^0.18.0",
44
44
  "@safe-global/safe-apps-sdk": "^8.1.0",
45
- "@walletconnect/ethereum-provider": "^2.10.0",
45
+ "@walletconnect/ethereum-provider": "^2.10.1",
46
46
  "@walletconnect/modal": "^2.6.2"
47
47
  },
48
48
  "devDependencies": {
49
49
  "lokijs": "^1.5.12",
50
50
  "msw": "^1.3.0",
51
- "@wagmi/core": "2.0.0-alpha.0"
51
+ "@wagmi/core": "2.0.0-alpha.2"
52
52
  },
53
53
  "contributors": [
54
- "jxom.eth <j@wagmi.sh>",
55
- "awkweb.eth <t@wagmi.sh>"
54
+ "awkweb.eth <t@wagmi.sh>",
55
+ "jxom.eth <j@wagmi.sh>"
56
56
  ],
57
57
  "funding": [
58
58
  {
@@ -0,0 +1,17 @@
1
+ export {
2
+ type CoinbaseWalletParameters,
3
+ coinbaseWallet,
4
+ } from '../coinbaseWallet.js'
5
+
6
+ export { type InjectedParameters, injected } from '../injected.js'
7
+
8
+ export { type LedgerParameters, ledger } from '../ledger.js'
9
+
10
+ export { type SafeParameters, safe } from '../safe.js'
11
+
12
+ export {
13
+ type WalletConnectParameters,
14
+ walletConnect,
15
+ } from '../walletConnect.js'
16
+
17
+ export { version } from '../version.js'
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const version = '4.0.0-alpha.0'
1
+ export const version = '4.0.0-alpha.2'
package/dist/esm/index.js DELETED
@@ -1,7 +0,0 @@
1
- export { coinbaseWallet, } from './coinbaseWallet.js';
2
- export { injected } from './injected.js';
3
- export { ledger } from './ledger.js';
4
- export { safe } from './safe.js';
5
- export { walletConnect, } from './walletConnect.js';
6
- export { version } from './version.js';
7
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,cAAc,GACf,MAAM,qBAAqB,CAAA;AAE5B,OAAO,EAA2B,QAAQ,EAAE,MAAM,eAAe,CAAA;AAEjE,OAAO,EAAyB,MAAM,EAAE,MAAM,aAAa,CAAA;AAE3D,OAAO,EAAuB,IAAI,EAAE,MAAM,WAAW,CAAA;AAErD,OAAO,EAEL,aAAa,GACd,MAAM,oBAAoB,CAAA;AAE3B,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAA"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.test-d.js","sourceRoot":"","sources":["../../src/index.test-d.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAA;AAErC,uFAAuF;AACvF,YAAY,CAAC,CAAC,CAAC,CAAC,aAAa,EAAU,CAAA"}
@@ -1,7 +0,0 @@
1
- export { type CoinbaseWalletParameters, coinbaseWallet, } from './coinbaseWallet.js';
2
- export { type InjectedParameters, injected } from './injected.js';
3
- export { type LedgerParameters, ledger } from './ledger.js';
4
- export { type SafeParameters, safe } from './safe.js';
5
- export { type WalletConnectParameters, walletConnect, } from './walletConnect.js';
6
- export { version } from './version.js';
7
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,wBAAwB,EAC7B,cAAc,GACf,MAAM,qBAAqB,CAAA;AAE5B,OAAO,EAAE,KAAK,kBAAkB,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAA;AAEjE,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,EAAE,MAAM,aAAa,CAAA;AAE3D,OAAO,EAAE,KAAK,cAAc,EAAE,IAAI,EAAE,MAAM,WAAW,CAAA;AAErD,OAAO,EACL,KAAK,uBAAuB,EAC5B,aAAa,GACd,MAAM,oBAAoB,CAAA;AAE3B,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAA"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.test-d.d.ts","sourceRoot":"","sources":["../../src/index.test-d.ts"],"names":[],"mappings":""}
package/src/index.ts DELETED
@@ -1,17 +0,0 @@
1
- export {
2
- type CoinbaseWalletParameters,
3
- coinbaseWallet,
4
- } from './coinbaseWallet.js'
5
-
6
- export { type InjectedParameters, injected } from './injected.js'
7
-
8
- export { type LedgerParameters, ledger } from './ledger.js'
9
-
10
- export { type SafeParameters, safe } from './safe.js'
11
-
12
- export {
13
- type WalletConnectParameters,
14
- walletConnect,
15
- } from './walletConnect.js'
16
-
17
- export { version } from './version.js'