@exodus/hardware-wallets 3.2.0 → 3.3.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 +6 -0
- package/lib/index.d.ts +6 -6
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
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
|
+
## [3.3.0](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/hardware-wallets@3.2.0...@exodus/hardware-wallets@3.3.0) (2025-10-27)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- feat: add delegated field on WalletAccount (#14195)
|
|
11
|
+
|
|
6
12
|
## [3.2.0](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/hardware-wallets@3.1.0...@exodus/hardware-wallets@3.2.0) (2025-10-09)
|
|
7
13
|
|
|
8
14
|
### Features
|
package/lib/index.d.ts
CHANGED
|
@@ -44,14 +44,14 @@ declare const hardwareWallets: () => {
|
|
|
44
44
|
readonly definition: {
|
|
45
45
|
readonly id: "hardwareWalletConnectedAssetNamesAtom";
|
|
46
46
|
readonly type: "atom";
|
|
47
|
-
readonly factory: ({ hardwareWalletPublicKeysAtom, assetsModule, walletAccountsAtom, availableAssetNamesAtom, }: any) => import("
|
|
47
|
+
readonly factory: ({ hardwareWalletPublicKeysAtom, assetsModule, walletAccountsAtom, availableAssetNamesAtom, }: any) => import("@exodus/atoms").ReadonlyAtom<unknown>;
|
|
48
48
|
readonly dependencies: readonly ["hardwareWalletPublicKeysAtom", "assetsModule", "walletAccountsAtom", "availableAssetNamesAtom"];
|
|
49
49
|
};
|
|
50
50
|
}, {
|
|
51
51
|
readonly definition: {
|
|
52
52
|
readonly id: "hardwareWalletSigningRequestsAtom";
|
|
53
53
|
readonly type: "atom";
|
|
54
|
-
readonly factory: () => import("
|
|
54
|
+
readonly factory: () => import("@exodus/atoms").Atom<import("./module/interfaces.js").SigningRequestState>;
|
|
55
55
|
readonly dependencies: readonly [];
|
|
56
56
|
readonly public: false;
|
|
57
57
|
};
|
|
@@ -59,7 +59,7 @@ declare const hardwareWallets: () => {
|
|
|
59
59
|
readonly definition: {
|
|
60
60
|
readonly id: "hardwareWalletPairingPromptAtom";
|
|
61
61
|
readonly type: "atom";
|
|
62
|
-
readonly factory: () => import("
|
|
62
|
+
readonly factory: () => import("@exodus/atoms").Atom<boolean>;
|
|
63
63
|
readonly public: true;
|
|
64
64
|
};
|
|
65
65
|
}, {
|
|
@@ -67,9 +67,9 @@ declare const hardwareWallets: () => {
|
|
|
67
67
|
readonly id: "hardwareWalletsPlugin";
|
|
68
68
|
readonly type: "plugin";
|
|
69
69
|
readonly factory: ({ hardwareWalletConnectedAssetNamesAtom, hardwareWalletSigningRequestsAtom, hardwareWalletPairingPromptAtom, port, }: {
|
|
70
|
-
hardwareWalletConnectedAssetNamesAtom: import("
|
|
71
|
-
hardwareWalletSigningRequestsAtom: import("
|
|
72
|
-
hardwareWalletPairingPromptAtom: import("
|
|
70
|
+
hardwareWalletConnectedAssetNamesAtom: import("@exodus/atoms").Atom<import("./atoms/index.js").WalletAccountNameToConnectedAssetNamesMap>;
|
|
71
|
+
hardwareWalletSigningRequestsAtom: import("@exodus/atoms").Atom<import("./module/interfaces.js").SigningRequestState>;
|
|
72
|
+
hardwareWalletPairingPromptAtom: import("@exodus/atoms").Atom<boolean>;
|
|
73
73
|
port: import("./shared/types.js").Port;
|
|
74
74
|
}) => {
|
|
75
75
|
onUnlock: () => void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/hardware-wallets",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.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.2.0",
|
|
36
|
-
"@exodus/models": "^12.
|
|
36
|
+
"@exodus/models": "^12.18.0",
|
|
37
37
|
"@exodus/redux-dependency-injection": "^4.0.0",
|
|
38
38
|
"@exodus/wild-emitter": "^1.1.0",
|
|
39
39
|
"delay": "^5.0.0",
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"access": "public",
|
|
54
54
|
"provenance": false
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "48ffae642085d466f42c47df71156bd16bd7b5c8"
|
|
57
57
|
}
|