@dynamic-labs/wallet-book 0.18.0-beta.32 → 0.18.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/CHANGELOG.md CHANGED
@@ -1,4 +1,28 @@
1
1
 
2
+ ## [0.18.0](https://github.com/dynamic-labs/DynamicAuth/compare/v0.18.0-beta.32...v0.18.0) (2023-08-13)
3
+
4
+
5
+ ### Features
6
+
7
+ * add in OKX wallet integration ([#2871](https://github.com/dynamic-labs/DynamicAuth/issues/2871)) ([#2927](https://github.com/dynamic-labs/DynamicAuth/issues/2927)) ([f6d06bc](https://github.com/dynamic-labs/DynamicAuth/commit/f6d06bc75ee0e53c9d972f5fab1f4de11818bd82))
8
+ * update wallet locked view ([#2923](https://github.com/dynamic-labs/DynamicAuth/issues/2923)) ([3cc03ee](https://github.com/dynamic-labs/DynamicAuth/commit/3cc03ee5913434d99386fc89d4d26d5d3fb3ca19))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * account already exist message not displaying automatically ([#2896](https://github.com/dynamic-labs/DynamicAuth/issues/2896)) ([#2906](https://github.com/dynamic-labs/DynamicAuth/issues/2906)) ([5e7478a](https://github.com/dynamic-labs/DynamicAuth/commit/5e7478acd864451a7cf7e8e62845cca7ef5439c6))
14
+ * don't let user update email if it's tied to an embedded wallet ([#2903](https://github.com/dynamic-labs/DynamicAuth/issues/2903)) ([33c52b5](https://github.com/dynamic-labs/DynamicAuth/commit/33c52b50a880a34b4161a700b8b1805c9b01527d)), closes [#2883](https://github.com/dynamic-labs/DynamicAuth/issues/2883)
15
+ * **GVTY-195:** issues with mergeUserAccountsView ([#2945](https://github.com/dynamic-labs/DynamicAuth/issues/2945)) ([2c6265e](https://github.com/dynamic-labs/DynamicAuth/commit/2c6265e3e709edb9ff1af6e6c139b85418e46d76))
16
+ * **Magic:** improve gas estimate for transactions ([#2947](https://github.com/dynamic-labs/DynamicAuth/issues/2947)) ([ad35a72](https://github.com/dynamic-labs/DynamicAuth/commit/ad35a722df6abd54b98ea491661ff4ec3e602621))
17
+ * missing enable isVerificationInProgress ([#2926](https://github.com/dynamic-labs/DynamicAuth/issues/2926)) ([98f54fd](https://github.com/dynamic-labs/DynamicAuth/commit/98f54fd1345713dfaf0ef837502dfaca3709d633))
18
+ * **networks:** merge custom network after API networks ([#2949](https://github.com/dynamic-labs/DynamicAuth/issues/2949)) ([ab22303](https://github.com/dynamic-labs/DynamicAuth/commit/ab22303294123c2a914a65f0d2c15481740647bb))
19
+ * onBeforeConnectSuccessConfirmation is being called multiple time ([#2965](https://github.com/dynamic-labs/DynamicAuth/issues/2965)) ([a276968](https://github.com/dynamic-labs/DynamicAuth/commit/a2769689bc82350dfb8123e1fe8a4e92a60b262c))
20
+ * **QNTM-249:** broken email update when user is authenticated ([#2932](https://github.com/dynamic-labs/DynamicAuth/issues/2932)) ([db33ba1](https://github.com/dynamic-labs/DynamicAuth/commit/db33ba14c317469958ce314a3822b706e20b07d0))
21
+ * reformat social sign-in text ([#2956](https://github.com/dynamic-labs/DynamicAuth/issues/2956)) ([#2961](https://github.com/dynamic-labs/DynamicAuth/issues/2961)) ([f8d2222](https://github.com/dynamic-labs/DynamicAuth/commit/f8d2222d102f5335f95ec917cbb63bf9b55eff0b))
22
+ * **transaction:** improve gas estimate in transaction confirmation ([#2938](https://github.com/dynamic-labs/DynamicAuth/issues/2938)) ([02d0f46](https://github.com/dynamic-labs/DynamicAuth/commit/02d0f46127e94e83b4decbaaf6a45dbae135c89d))
23
+ * useSyncPrimaryWallet overrides views with "wallet-locked-view" ([#2921](https://github.com/dynamic-labs/DynamicAuth/issues/2921)) ([aa8c369](https://github.com/dynamic-labs/DynamicAuth/commit/aa8c369d2a713eb57ecc99b16a6b62d465789370))
24
+ * **wallet-list:** update key to distinguish wallet and wallet group ([#2922](https://github.com/dynamic-labs/DynamicAuth/issues/2922)) ([f40c07c](https://github.com/dynamic-labs/DynamicAuth/commit/f40c07c65915775e99a1dbb8d07bb23824a92915)), closes [#2909](https://github.com/dynamic-labs/DynamicAuth/issues/2909)
25
+
2
26
  ## [0.18.0-beta.32](https://github.com/dynamic-labs/DynamicAuth/compare/v0.18.0-beta.31...v0.18.0-beta.32) (2023-08-09)
3
27
 
4
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/wallet-book",
3
- "version": "0.18.0-beta.32",
3
+ "version": "0.18.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/dynamic-labs/DynamicAuth.git",
@@ -26,7 +26,7 @@
26
26
  },
27
27
  "dependencies": {
28
28
  "zod": "3.21.4",
29
- "@dynamic-labs/logger": "0.18.0-beta.32"
29
+ "@dynamic-labs/logger": "0.18.0"
30
30
  },
31
31
  "peerDependencies": {
32
32
  "react": "^17.0.2 || ^18.0.0",
@@ -14,6 +14,12 @@ export declare const applyOverrides: (sourceData: any, overrides?: {
14
14
  };
15
15
  };
16
16
  };
17
+ exodus: {
18
+ group: {
19
+ action: string;
20
+ value: string;
21
+ };
22
+ };
17
23
  ledger: {
18
24
  switchNetworkOnlyFromWallet: {
19
25
  action: string;
@@ -42,6 +48,26 @@ export declare const applyOverrides: (sourceData: any, overrides?: {
42
48
  };
43
49
  };
44
50
  };
51
+ okxwallet: {
52
+ desktop: {
53
+ action: string;
54
+ value: {
55
+ chromeId: string;
56
+ };
57
+ };
58
+ mobile: {
59
+ native: {
60
+ action: string;
61
+ value: string;
62
+ };
63
+ };
64
+ walletConnect: {
65
+ sdks: {
66
+ action: string;
67
+ value: string[];
68
+ };
69
+ };
70
+ };
45
71
  rainbow: {
46
72
  brand: {
47
73
  imageId: {
@@ -106,6 +132,12 @@ export declare const walletConnectOverrides: {
106
132
  };
107
133
  };
108
134
  };
135
+ exodus: {
136
+ group: {
137
+ action: string;
138
+ value: string;
139
+ };
140
+ };
109
141
  ledger: {
110
142
  switchNetworkOnlyFromWallet: {
111
143
  action: string;
@@ -134,6 +166,26 @@ export declare const walletConnectOverrides: {
134
166
  };
135
167
  };
136
168
  };
169
+ okxwallet: {
170
+ desktop: {
171
+ action: string;
172
+ value: {
173
+ chromeId: string;
174
+ };
175
+ };
176
+ mobile: {
177
+ native: {
178
+ action: string;
179
+ value: string;
180
+ };
181
+ };
182
+ walletConnect: {
183
+ sdks: {
184
+ action: string;
185
+ value: string[];
186
+ };
187
+ };
188
+ };
137
189
  rainbow: {
138
190
  brand: {
139
191
  imageId: {
@@ -3,14 +3,6 @@
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  var groups = {
6
- backpack: {
7
- brand: {
8
- alt: "Backpack Wallet",
9
- spriteId: "backpack"
10
- },
11
- key: "backpack",
12
- name: "Backpack"
13
- },
14
6
  blocto: {
15
7
  brand: {
16
8
  alt: "Blocto",
@@ -1,12 +1,4 @@
1
1
  var groups = {
2
- backpack: {
3
- brand: {
4
- alt: "Backpack Wallet",
5
- spriteId: "backpack"
6
- },
7
- key: "backpack",
8
- name: "Backpack"
9
- },
10
2
  blocto: {
11
3
  brand: {
12
4
  alt: "Blocto",