wagmi 3.6.20 → 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.
- package/dist/esm/tempo/hooks/zone.js.map +1 -1
- package/dist/esm/tsconfig.build.tsbuildinfo +1 -1
- package/dist/esm/version.js +1 -1
- package/dist/esm/version.js.map +1 -1
- package/dist/types/version.d.ts +1 -1
- package/dist/types/version.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/exports/baseAccount.ts +1 -0
- package/src/exports/coinbaseWallet.ts +1 -0
- package/src/exports/injected.ts +1 -0
- package/src/exports/metaMask.ts +1 -0
- package/src/exports/mock.ts +1 -0
- package/src/exports/porto.ts +1 -0
- package/src/exports/safe.ts +1 -0
- package/src/exports/tempoWallet.ts +1 -0
- package/src/exports/walletConnect.ts +1 -0
- package/src/tempo/hooks/zone.ts +4 -4
- package/src/version.ts +1 -1
package/dist/esm/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const version = '3.
|
|
1
|
+
export const version = '3.7.0';
|
|
2
2
|
//# sourceMappingURL=version.js.map
|
package/dist/esm/version.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.js","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,OAAO,GAAG,
|
|
1
|
+
{"version":3,"file":"version.js","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,OAAO,GAAG,OAAO,CAAA"}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "3.
|
|
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,
|
|
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.
|
|
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.
|
|
159
|
-
"@wagmi/core": "3.
|
|
158
|
+
"@wagmi/connectors": "8.0.21",
|
|
159
|
+
"@wagmi/core": "3.6.0"
|
|
160
160
|
},
|
|
161
161
|
"contributors": [
|
|
162
162
|
"awkweb.eth <t@wevm.dev>",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { type BaseAccountParameters, baseAccount } from '@wagmi/connectors/baseAccount'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { type CoinbaseWalletParameters, coinbaseWallet } from '@wagmi/connectors/coinbaseWallet'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { type InjectedParameters, injected } from '@wagmi/connectors/injected'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { type MetaMaskParameters, metaMask } from '@wagmi/connectors/metaMask'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { type MockParameters, mock } from '@wagmi/connectors/mock'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { type PortoParameters, porto } from '@wagmi/connectors/porto'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { type SafeParameters, safe } from '@wagmi/connectors/safe'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { type TempoWalletParameters, tempoWallet } from '@wagmi/connectors/tempoWallet'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { type WalletConnectParameters, walletConnect } from '@wagmi/connectors/walletConnect'
|
package/src/tempo/hooks/zone.ts
CHANGED
|
@@ -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.
|
|
1
|
+
export const version = '3.7.0'
|