@ledgerhq/hw-ledger-key-ring-protocol 0.2.1 → 0.3.0-next.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/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @ledgerhq/live-wallet
|
|
2
2
|
|
|
3
|
+
## 0.3.0-next.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#8653](https://github.com/LedgerHQ/ledger-live/pull/8653) [`fbff5e4`](https://github.com/LedgerHQ/ledger-live/commit/fbff5e46c871d4f0d9d89a5638309408bb057197) Thanks [@cgrellard-ledger](https://github.com/cgrellard-ledger)! - HWLKRP - Pin tiny-secp256k1 version
|
|
8
|
+
|
|
3
9
|
## 0.2.1
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ledgerhq/hw-ledger-key-ring-protocol",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0-next.0",
|
|
4
4
|
"description": "Ledger Key Ring Protocol hardware layer",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Ledger"
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"bip32": "^4.0.0",
|
|
22
22
|
"secp256k1": "^5.0.0",
|
|
23
23
|
"create-hmac": "^1.1.7",
|
|
24
|
-
"tiny-secp256k1": "1",
|
|
24
|
+
"tiny-secp256k1": "1.1.7",
|
|
25
25
|
"@ledgerhq/hw-transport": "6.31.4",
|
|
26
26
|
"@ledgerhq/logs": "6.12.0",
|
|
27
27
|
"@ledgerhq/live-env": "2.4.1"
|
|
@@ -54,6 +54,7 @@
|
|
|
54
54
|
"build": "tsc && tsc -m ES6 --outDir lib-es",
|
|
55
55
|
"prewatch": "pnpm build",
|
|
56
56
|
"watch": "tsc --watch",
|
|
57
|
+
"watch:es": "tsc --watch -m ES6 --outDir lib-es",
|
|
57
58
|
"lint": "eslint ./src --no-error-on-unmatched-pattern --ext .ts,.tsx --cache",
|
|
58
59
|
"lint:fix": "pnpm lint --fix",
|
|
59
60
|
"typecheck": "tsc --noEmit",
|