@privy-io/wagmi 4.0.4 → 4.0.6
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/dts/index.d.mts +2 -1
- package/dist/dts/index.d.ts +2 -1
- package/package.json +13 -12
package/dist/dts/index.d.mts
CHANGED
|
@@ -84,4 +84,5 @@ type useEmbeddedSmartAccountConnectorParams = {
|
|
|
84
84
|
*/
|
|
85
85
|
declare const useEmbeddedSmartAccountConnector: ({ getSmartAccountFromSigner, }: useEmbeddedSmartAccountConnectorParams) => void;
|
|
86
86
|
|
|
87
|
-
export {
|
|
87
|
+
export { WagmiProvider, createConfig, useEmbeddedSmartAccountConnector, usePrivyWagmi, useSetActiveWallet };
|
|
88
|
+
export type { SetActiveWalletForWagmiType };
|
package/dist/dts/index.d.ts
CHANGED
|
@@ -84,4 +84,5 @@ type useEmbeddedSmartAccountConnectorParams = {
|
|
|
84
84
|
*/
|
|
85
85
|
declare const useEmbeddedSmartAccountConnector: ({ getSmartAccountFromSigner, }: useEmbeddedSmartAccountConnectorParams) => void;
|
|
86
86
|
|
|
87
|
-
export {
|
|
87
|
+
export { WagmiProvider, createConfig, useEmbeddedSmartAccountConnector, usePrivyWagmi, useSetActiveWallet };
|
|
88
|
+
export type { SetActiveWalletForWagmiType };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@privy-io/wagmi",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.6",
|
|
4
4
|
"description": "Wagmi bindings for the react client",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"privy",
|
|
@@ -34,6 +34,8 @@
|
|
|
34
34
|
"not op_mini all"
|
|
35
35
|
],
|
|
36
36
|
"devDependencies": {
|
|
37
|
+
"oxlint": "1.57.0",
|
|
38
|
+
"oxlint-tsgolint": "0.18.0",
|
|
37
39
|
"@rollup/plugin-node-resolve": "^15.3.0",
|
|
38
40
|
"@rollup/plugin-replace": "^6.0.1",
|
|
39
41
|
"@rollup/plugin-swc": "^0.4.0",
|
|
@@ -44,24 +46,23 @@
|
|
|
44
46
|
"@tsconfig/node16-strictest-esm": "^1.0.3",
|
|
45
47
|
"@types/jest": "^29.1.2",
|
|
46
48
|
"@types/node": "^22.13.14",
|
|
47
|
-
"@types/react": "
|
|
48
|
-
"@types/react-dom": "
|
|
49
|
+
"@types/react": "~19.1.17",
|
|
50
|
+
"@types/react-dom": "~19.1.11",
|
|
49
51
|
"glob": "^10.3.12",
|
|
50
52
|
"jest": "^29.7.0",
|
|
51
|
-
"react": "
|
|
53
|
+
"react": "19.1.0",
|
|
52
54
|
"rollup": "4.60.1",
|
|
53
55
|
"rollup-plugin-copy": "^3.5.0",
|
|
54
56
|
"rollup-plugin-dts": "^6.1.1",
|
|
55
|
-
"typescript": "~
|
|
56
|
-
"@privy-io/
|
|
57
|
-
"@privy-io/react-auth": "3.
|
|
58
|
-
"@privy-io/tsconfig": "0.0.0"
|
|
59
|
-
"@privy-io/build-config": "1.0.0"
|
|
57
|
+
"typescript": "~6.0.2",
|
|
58
|
+
"@privy-io/build-config": "1.0.0",
|
|
59
|
+
"@privy-io/react-auth": "3.22.2",
|
|
60
|
+
"@privy-io/tsconfig": "0.0.0"
|
|
60
61
|
},
|
|
61
62
|
"peerDependencies": {
|
|
62
63
|
"@privy-io/react-auth": "^3",
|
|
63
64
|
"react": ">=18",
|
|
64
|
-
"viem": "2.47.
|
|
65
|
+
"viem": "2.47.12",
|
|
65
66
|
"wagmi": ">=2"
|
|
66
67
|
},
|
|
67
68
|
"publishConfig": {
|
|
@@ -75,8 +76,8 @@
|
|
|
75
76
|
"clean:reset": "rm -rf dist .turbo .swc node_modules",
|
|
76
77
|
"dev:code": "rollup --config rollup.dev.mjs --watch",
|
|
77
78
|
"dev:types": "rollup --config rollup.types.mjs --watch",
|
|
78
|
-
"format": "
|
|
79
|
-
"lint": "
|
|
79
|
+
"format": "oxlint src --fix",
|
|
80
|
+
"lint": "oxlint src",
|
|
80
81
|
"test": "jest"
|
|
81
82
|
}
|
|
82
83
|
}
|