@ledgerhq/hw-app-exchange 0.12.1-nightly.0 → 0.13.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/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +9 -5
- package/package.json +6 -6
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
|
|
2
|
-
> @ledgerhq/hw-app-exchange@0.
|
|
2
|
+
> @ledgerhq/hw-app-exchange@0.13.0 prebuild /home/runner/work/ledger-live/ledger-live/libs/ledgerjs/packages/hw-app-exchange
|
|
3
3
|
> pnpm pbjs -t json -r ledger_swap -o src/generate-protocol.json ./protocol.proto
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
> @ledgerhq/hw-app-exchange@0.
|
|
6
|
+
> @ledgerhq/hw-app-exchange@0.13.0 build /home/runner/work/ledger-live/ledger-live/libs/ledgerjs/packages/hw-app-exchange
|
|
7
7
|
> tsc && tsc -m esnext --moduleResolution bundler --outDir lib-es
|
|
8
8
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
# @ledgerhq/hw-app-exchange
|
|
2
2
|
|
|
3
|
-
## 0.
|
|
3
|
+
## 0.13.0
|
|
4
4
|
|
|
5
|
-
###
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#11346](https://github.com/LedgerHQ/ledger-live/pull/11346) [`fa8605b`](https://github.com/LedgerHQ/ledger-live/commit/fa8605befcc07e8446f8babfbe1bb99e5641c827) Thanks [@hhumphrey-ledger](https://github.com/hhumphrey-ledger)! - Added new payinExtraId to payload
|
|
8
|
+
|
|
9
|
+
## 0.13.0-next.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
6
12
|
|
|
7
|
-
-
|
|
8
|
-
- @ledgerhq/errors@6.25.0-nightly.0
|
|
9
|
-
- @ledgerhq/hw-transport@6.31.10-nightly.0
|
|
13
|
+
- [#11346](https://github.com/LedgerHQ/ledger-live/pull/11346) [`fa8605b`](https://github.com/LedgerHQ/ledger-live/commit/fa8605befcc07e8446f8babfbe1bb99e5641c827) Thanks [@hhumphrey-ledger](https://github.com/hhumphrey-ledger)! - Added new payinExtraId to payload
|
|
10
14
|
|
|
11
15
|
## 0.12.0
|
|
12
16
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ledgerhq/hw-app-exchange",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.0",
|
|
4
4
|
"description": "Ledger Hardware Wallet Cosmos Application API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Ledger",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"invariant": "^2.2.2",
|
|
31
31
|
"protobufjs": "7.2.5",
|
|
32
32
|
"protobufjs-cli": "1.1.2",
|
|
33
|
-
"@ledgerhq/errors": "^6.
|
|
34
|
-
"@ledgerhq/hw-transport": "^6.31.
|
|
33
|
+
"@ledgerhq/errors": "^6.24.0",
|
|
34
|
+
"@ledgerhq/hw-transport": "^6.31.9"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/jest": "^29.5.10",
|
|
@@ -42,14 +42,14 @@
|
|
|
42
42
|
"secp256k1": "5.0.0",
|
|
43
43
|
"ts-jest": "^29.1.1",
|
|
44
44
|
"ts-node": "^10.4.0",
|
|
45
|
-
"@ledgerhq/hw-transport-mocker": "^6.29.
|
|
46
|
-
"@ledgerhq/hw-transport-node-speculos-http": "^6.29.
|
|
45
|
+
"@ledgerhq/hw-transport-mocker": "^6.29.9",
|
|
46
|
+
"@ledgerhq/hw-transport-node-speculos-http": "^6.29.9"
|
|
47
47
|
},
|
|
48
48
|
"scripts": {
|
|
49
49
|
"clean": "rimraf lib lib-es",
|
|
50
50
|
"prebuild": "pnpm pbjs -t json -r ledger_swap -o src/generate-protocol.json ./protocol.proto",
|
|
51
51
|
"build": "tsc && tsc -m esnext --moduleResolution bundler --outDir lib-es",
|
|
52
|
-
"coverage": "jest --coverage --passWithNoTests",
|
|
52
|
+
"coverage": "jest --coverage --passWithNoTests && mv coverage/coverage-final.json coverage/coverage-hw-app-exchange.json",
|
|
53
53
|
"prewatch": "pnpm build",
|
|
54
54
|
"watch": "tsc --watch",
|
|
55
55
|
"watch:es": "tsc --watch -m esnext --moduleResolution bundler --outDir lib-es",
|