@exodus/hardware-wallets 2.0.4 → 2.1.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 +12 -0
- package/lib/module/hardware-wallets.js +1 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [2.1.0](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/hardware-wallets@2.0.5...@exodus/hardware-wallets@2.1.0) (2025-05-13)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- feat(wallet-accounts): default ledger color and icon (#12426)
|
|
11
|
+
|
|
12
|
+
## [2.0.5](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/hardware-wallets@2.0.4...@exodus/hardware-wallets@2.0.5) (2025-05-09)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
- fix(hardware-wallets): complete modal flow on user refusal action (#12056)
|
|
17
|
+
|
|
6
18
|
## [2.0.4](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/hardware-wallets@2.0.3...@exodus/hardware-wallets@2.0.4) (2025-03-05)
|
|
7
19
|
|
|
8
20
|
### Bug Fixes
|
|
@@ -63,6 +63,7 @@ export class HardwareWallets {
|
|
|
63
63
|
break;
|
|
64
64
|
}
|
|
65
65
|
else if (error.name === 'UserRefusedError') {
|
|
66
|
+
void this.#requestUserAction({ scenario: 'completed' });
|
|
66
67
|
throw error;
|
|
67
68
|
}
|
|
68
69
|
if (['DisconnectedDevice', 'DisconnectedDeviceDuringOperation'].includes(error.name)) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/hardware-wallets",
|
|
3
|
-
"version": "2.0
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "An Exodus SDK feature that provides a high level abstraction for interacting with hardware wallet devices",
|
|
5
5
|
"author": "Exodus Movement, Inc.",
|
|
6
6
|
"repository": {
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"@exodus/bip32": "^4.0.2",
|
|
34
34
|
"@exodus/crypto": "^1.0.0-rc.14",
|
|
35
35
|
"@exodus/hw-common": "^3.1.0",
|
|
36
|
-
"@exodus/models": "^12.0
|
|
36
|
+
"@exodus/models": "^12.11.0",
|
|
37
37
|
"@exodus/redux-dependency-injection": "^4.0.0",
|
|
38
38
|
"@exodus/wild-emitter": "^1.1.0",
|
|
39
39
|
"delay": "^5.0.0",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"publishConfig": {
|
|
52
52
|
"access": "public"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "889c5877fb5d799d27c4d1b756329c7c0effbeec"
|
|
55
55
|
}
|