@exodus/hardware-wallets 3.0.2 → 3.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
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.1.0](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/hardware-wallets@3.0.2...@exodus/hardware-wallets@3.1.0) (2025-10-01)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- feat(hardware-wallets): add baseAssetName to signRequest (#13962)
|
|
11
|
+
|
|
6
12
|
## [3.0.2](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/hardware-wallets@3.0.1...@exodus/hardware-wallets@3.0.2) (2025-08-08)
|
|
7
13
|
|
|
8
14
|
### Bug Fixes
|
|
@@ -84,6 +84,7 @@ export class HardwareWallets {
|
|
|
84
84
|
id,
|
|
85
85
|
scenario: 'error',
|
|
86
86
|
error: _error,
|
|
87
|
+
baseAssetName: this.#signingRequest.baseAssetName,
|
|
87
88
|
});
|
|
88
89
|
}
|
|
89
90
|
};
|
|
@@ -114,6 +115,7 @@ export class HardwareWallets {
|
|
|
114
115
|
const deferred = pDefer();
|
|
115
116
|
this.#signingRequest = {
|
|
116
117
|
id,
|
|
118
|
+
baseAssetName,
|
|
117
119
|
sign: async ({ device }) => {
|
|
118
120
|
await this.#updateSigningRequest({
|
|
119
121
|
id,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/hardware-wallets",
|
|
3
|
-
"version": "3.0
|
|
3
|
+
"version": "3.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": {
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"publishConfig": {
|
|
53
53
|
"access": "public"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "49fc43a24e3c998b9a2f3224b22649e61c8d25a5"
|
|
56
56
|
}
|