@ledgerhq/hw-app-exchange 0.17.0 → 0.18.0-nightly.20251120023735
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/package.json +3 -3
- package/src/Exchange.integ.test.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @ledgerhq/hw-app-exchange
|
|
2
2
|
|
|
3
|
+
## 0.18.0-nightly.20251120023735
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#12563](https://github.com/LedgerHQ/ledger-live/pull/12563) [`b4a4e16`](https://github.com/LedgerHQ/ledger-live/commit/b4a4e160aae6fd64f944ab25633f6931dc4358d3) Thanks [@fAnselmi-Ledger](https://github.com/fAnselmi-Ledger)! - Add DMK speculos transport and device controller
|
|
8
|
+
|
|
3
9
|
## 0.17.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ledgerhq/hw-app-exchange",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.18.0-nightly.20251120023735",
|
|
4
4
|
"description": "Ledger Hardware Wallet Cosmos Application API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Ledger",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"types": "lib/index.d.ts",
|
|
26
26
|
"license": "Apache-2.0",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@ledgerhq/device-management-kit": "0.
|
|
28
|
+
"@ledgerhq/device-management-kit": "0.11.1",
|
|
29
29
|
"bignumber.js": "^9.1.2",
|
|
30
30
|
"invariant": "^2.2.2",
|
|
31
31
|
"protobufjs": "7.2.5",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"ts-jest": "^29.1.1",
|
|
44
44
|
"ts-node": "^10.4.0",
|
|
45
45
|
"@ledgerhq/hw-transport-mocker": "^6.29.13",
|
|
46
|
-
"@ledgerhq/
|
|
46
|
+
"@ledgerhq/live-dmk-speculos": "^0.2.0-nightly.20251120023735"
|
|
47
47
|
},
|
|
48
48
|
"scripts": {
|
|
49
49
|
"clean": "rimraf lib lib-es",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import bippath from "bip32-path";
|
|
2
|
-
import
|
|
2
|
+
import { DeviceManagementKitTransportSpeculos } from "@ledgerhq/live-dmk-speculos";
|
|
3
3
|
import Exchange, { ExchangeTypes, PartnerKeyInfo } from "./Exchange";
|
|
4
4
|
import Transport from "@ledgerhq/hw-transport";
|
|
5
5
|
import { randomBytes, subtle } from "crypto";
|
|
@@ -11,7 +11,7 @@ describe("Check Exchange until payload signature", () => {
|
|
|
11
11
|
let transport: Transport;
|
|
12
12
|
|
|
13
13
|
beforeAll(async () => {
|
|
14
|
-
transport = await
|
|
14
|
+
transport = await DeviceManagementKitTransportSpeculos.open({});
|
|
15
15
|
});
|
|
16
16
|
afterAll(async () => {
|
|
17
17
|
transport.close();
|