wagmi 3.6.21 → 3.7.0

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 = '3.6.21';
1
+ export const version = '3.7.0';
2
2
  //# sourceMappingURL=version.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"version.js","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,OAAO,GAAG,QAAQ,CAAA"}
1
+ {"version":3,"file":"version.js","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,OAAO,GAAG,OAAO,CAAA"}
@@ -1,2 +1,2 @@
1
- export declare const version = "3.6.21";
1
+ export declare const version = "3.7.0";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,WAAW,CAAA"}
1
+ {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,UAAU,CAAA"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "wagmi",
3
3
  "description": "React Hooks for Ethereum",
4
- "version": "3.6.21",
4
+ "version": "3.7.0",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
@@ -155,8 +155,8 @@
155
155
  },
156
156
  "dependencies": {
157
157
  "use-sync-external-store": "1.4.0",
158
- "@wagmi/connectors": "8.0.20",
159
- "@wagmi/core": "3.5.5"
158
+ "@wagmi/connectors": "8.0.21",
159
+ "@wagmi/core": "3.6.0"
160
160
  },
161
161
  "contributors": [
162
162
  "awkweb.eth <t@wevm.dev>",
@@ -498,10 +498,10 @@ export function useEncryptedDeposit<
498
498
  return useMutation({
499
499
  ...mutation,
500
500
  async mutationFn(variables) {
501
- return Actions.zone.encryptedDeposit(config, variables)
501
+ return Actions.zone.encryptedDeposit(config, variables as never)
502
502
  },
503
503
  mutationKey: ['encryptedDeposit'],
504
- })
504
+ }) as useEncryptedDeposit.ReturnType<config, context>
505
505
  }
506
506
 
507
507
  export declare namespace useEncryptedDeposit {
@@ -575,10 +575,10 @@ export function useEncryptedDepositSync<
575
575
  return useMutation({
576
576
  ...mutation,
577
577
  async mutationFn(variables) {
578
- return Actions.zone.encryptedDepositSync(config, variables)
578
+ return Actions.zone.encryptedDepositSync(config, variables as never)
579
579
  },
580
580
  mutationKey: ['encryptedDepositSync'],
581
- })
581
+ }) as useEncryptedDepositSync.ReturnType<config, context>
582
582
  }
583
583
 
584
584
  export declare namespace useEncryptedDepositSync {
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const version = '3.6.21'
1
+ export const version = '3.7.0'