@ledgerhq/devices 8.2.0 → 8.2.1-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 +7 -0
- package/lib/index.js +2 -2
- package/lib-es/index.js +2 -2
- package/package.json +2 -2
- package/src/index.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @ledgerhq/devices
|
|
2
2
|
|
|
3
|
+
## 8.2.1-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`f456d69`](https://github.com/LedgerHQ/ledger-live/commit/f456d69a2f64b6a217d3c1d9c6a531f31c2817a8)]:
|
|
8
|
+
- @ledgerhq/errors@6.16.2-next.0
|
|
9
|
+
|
|
3
10
|
## 8.2.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
package/lib/index.js
CHANGED
|
@@ -60,7 +60,7 @@ const devices = {
|
|
|
60
60
|
productIdMM: 0x50,
|
|
61
61
|
legacyUsbProductId: 0x0005,
|
|
62
62
|
usbOnly: true,
|
|
63
|
-
memorySize:
|
|
63
|
+
memorySize: 1533 * 1024,
|
|
64
64
|
masks: [0x33100000],
|
|
65
65
|
getBlockSize: (_firmwareVersion) => 32,
|
|
66
66
|
},
|
|
@@ -88,7 +88,7 @@ const devices = {
|
|
|
88
88
|
productIdMM: 0x60,
|
|
89
89
|
legacyUsbProductId: 0x0006,
|
|
90
90
|
usbOnly: false,
|
|
91
|
-
memorySize:
|
|
91
|
+
memorySize: 1533 * 1024,
|
|
92
92
|
masks: [0x33200000],
|
|
93
93
|
getBlockSize: (_firmwareVersion) => 32,
|
|
94
94
|
bluetoothSpec: [
|
package/lib-es/index.js
CHANGED
|
@@ -54,7 +54,7 @@ const devices = {
|
|
|
54
54
|
productIdMM: 0x50,
|
|
55
55
|
legacyUsbProductId: 0x0005,
|
|
56
56
|
usbOnly: true,
|
|
57
|
-
memorySize:
|
|
57
|
+
memorySize: 1533 * 1024,
|
|
58
58
|
masks: [0x33100000],
|
|
59
59
|
getBlockSize: (_firmwareVersion) => 32,
|
|
60
60
|
},
|
|
@@ -82,7 +82,7 @@ const devices = {
|
|
|
82
82
|
productIdMM: 0x60,
|
|
83
83
|
legacyUsbProductId: 0x0006,
|
|
84
84
|
usbOnly: false,
|
|
85
|
-
memorySize:
|
|
85
|
+
memorySize: 1533 * 1024,
|
|
86
86
|
masks: [0x33200000],
|
|
87
87
|
getBlockSize: (_firmwareVersion) => 32,
|
|
88
88
|
bluetoothSpec: [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ledgerhq/devices",
|
|
3
|
-
"version": "8.2.0",
|
|
3
|
+
"version": "8.2.1-next.0",
|
|
4
4
|
"description": "Ledger devices",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Ledger"
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"rxjs": "^7.8.1",
|
|
57
57
|
"semver": "^7.3.5",
|
|
58
|
-
"@ledgerhq/errors": "^6.16.
|
|
58
|
+
"@ledgerhq/errors": "^6.16.2-next.0",
|
|
59
59
|
"@ledgerhq/logs": "^6.12.0"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
package/src/index.ts
CHANGED
|
@@ -57,7 +57,7 @@ const devices: { [key in DeviceModelId]: DeviceModel } = {
|
|
|
57
57
|
productIdMM: 0x50,
|
|
58
58
|
legacyUsbProductId: 0x0005,
|
|
59
59
|
usbOnly: true,
|
|
60
|
-
memorySize:
|
|
60
|
+
memorySize: 1533 * 1024,
|
|
61
61
|
masks: [0x33100000],
|
|
62
62
|
getBlockSize: (_firmwareVersion: string): number => 32,
|
|
63
63
|
},
|
|
@@ -85,7 +85,7 @@ const devices: { [key in DeviceModelId]: DeviceModel } = {
|
|
|
85
85
|
productIdMM: 0x60,
|
|
86
86
|
legacyUsbProductId: 0x0006,
|
|
87
87
|
usbOnly: false,
|
|
88
|
-
memorySize:
|
|
88
|
+
memorySize: 1533 * 1024,
|
|
89
89
|
masks: [0x33200000],
|
|
90
90
|
getBlockSize: (_firmwareVersion: string): number => 32,
|
|
91
91
|
bluetoothSpec: [
|