@dynamic-labs/wallet-book 4.9.6 → 4.9.8

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,18 @@
1
1
 
2
+ ### [4.9.8](https://github.com/dynamic-labs/dynamic-auth/compare/v4.9.7...v4.9.8) (2025-03-24)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * unlink wallets when using 7702 account ([#8367](https://github.com/dynamic-labs/dynamic-auth/issues/8367)) ([f5acf05](https://github.com/dynamic-labs/dynamic-auth/commit/f5acf05ef31b8f411f3b0cd0e90e919e71f4ad50))
8
+
9
+ ### [4.9.7](https://github.com/dynamic-labs/dynamic-auth/compare/v4.9.6...v4.9.7) (2025-03-21)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * back button for metamask qr code ([#8343](https://github.com/dynamic-labs/dynamic-auth/issues/8343)) ([2a9defd](https://github.com/dynamic-labs/dynamic-auth/commit/2a9defdbb19dc9879e4967fbba28b3a98414105a))
15
+
2
16
  ### [4.9.6](https://github.com/dynamic-labs/dynamic-auth/compare/v4.9.5...v4.9.6) (2025-03-21)
3
17
 
4
18
 
package/README.md CHANGED
@@ -95,7 +95,7 @@ export class <NameOfConnector> extends InjectedWalletBase {
95
95
 
96
96
  #### Things to remember when adding a new wallet
97
97
 
98
- - `IF the new wallet is also in wallletconnect.json`: make sure that the key used in `firstParty/index.ts` is the `same` as the value from `walletconnect.json` as to inherit the properties from that wallet definition.
98
+ - `If the new wallet is also in walletconnect.json`: make sure that the key used in `firstParty/index.ts` is the `same` as the value from `walletconnect.json` as to inherit the properties from that wallet definition.
99
99
  - The value(s) in `windowLocations` map to `window.<value from windowLocations>`. i.e. `okxwallet` means `window.okxwallet`. The values can be a nested path that is dot delimited. If the wallet lives under `window.ethereum` or `window.ethereum.providers`, those window locations are imported by default.
100
100
  - For every extension locator you add for the new wallet, add the negation `[{ flag: 'isOkxWallet', value: false }, ...]` to the extensionLocators under the `metamask` key in firstParty.
101
101
  - If the new wallet is wallet connect enabled (exists in `walletconnect.json`), make sure to add: `filterFromWalletConnect: true` as a sibling to `injectedConfig` which will filter the wallet from the wallet connect connectors list and use wallet connect as fallback.
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.9.6";
6
+ var version = "4.9.8";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.9.6";
2
+ var version = "4.9.8";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/wallet-book",
3
- "version": "4.9.6",
3
+ "version": "4.9.8",
4
4
  "author": "Dynamic Labs, Inc.",
5
5
  "license": "MIT",
6
6
  "main": "./src/index.cjs",
@@ -17,10 +17,10 @@
17
17
  },
18
18
  "dependencies": {
19
19
  "zod": "3.22.4",
20
- "@dynamic-labs/assert-package-version": "4.9.6",
21
- "@dynamic-labs/iconic": "4.9.6",
22
- "@dynamic-labs/logger": "4.9.6",
23
- "@dynamic-labs/utils": "4.9.6",
20
+ "@dynamic-labs/assert-package-version": "4.9.8",
21
+ "@dynamic-labs/iconic": "4.9.8",
22
+ "@dynamic-labs/logger": "4.9.8",
23
+ "@dynamic-labs/utils": "4.9.8",
24
24
  "eventemitter3": "5.0.1",
25
25
  "util": "0.12.5"
26
26
  },