@ledgerhq/live-cli 22.0.2 → 22.0.3-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/README.md +12 -4
- package/lib/commands/synchronousOnboarding.d.ts +23 -0
- package/lib/commands/synchronousOnboarding.d.ts.map +1 -0
- package/lib/commands/synchronousOnboarding.js +24 -0
- package/lib/commands/synchronousOnboarding.js.map +1 -0
- package/lib/commands-index.d.ts +19 -0
- package/lib/commands-index.d.ts.map +1 -1
- package/lib/commands-index.js +2 -0
- package/lib/commands-index.js.map +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -210,8 +210,6 @@ Usage: ledger-live firmwareUpdate # Perform a firmware update
|
|
|
210
210
|
--osuVersion <String> : (to your own risk) provide yourself an OSU version to flash the device with
|
|
211
211
|
--listOSUs : list all available OSUs (for all devices, beta and prod versions)
|
|
212
212
|
|
|
213
|
-
Usage: ledger-live generateAppJsonFromDataset # Extract accounts from test datasets and print a sample app.json usable for tests
|
|
214
|
-
|
|
215
213
|
Usage: ledger-live generateTestScanAccounts # Generate a test for scan accounts (live-common dataset)
|
|
216
214
|
-d, --device <String> : provide a specific HID path of a device
|
|
217
215
|
--xpub <String> : use an xpub (alternatively to --device) [DEPRECATED: prefer use of id]
|
|
@@ -266,6 +264,8 @@ Usage: ledger-live generateTestTransaction # Generate a test for transaction (li
|
|
|
266
264
|
--rewardDestination <String>: Reward destination
|
|
267
265
|
--fee <String> : how much fee
|
|
268
266
|
--tag <Number> : ripple tag
|
|
267
|
+
--solanaValidator <String>: validator address to delegate to
|
|
268
|
+
--solanaStakeAccount <String>: stake account address to use in the transaction
|
|
269
269
|
--memoType <String> : stellar memo type
|
|
270
270
|
--memoValue <String> : stellar memo value
|
|
271
271
|
--storageLimit <String> : how much storageLimit. default is estimated with the recipient
|
|
@@ -326,6 +326,8 @@ Usage: ledger-live getTransactionStatus # Prepare a transaction and returns 'Tra
|
|
|
326
326
|
--rewardDestination <String>: Reward destination
|
|
327
327
|
--fee <String> : how much fee
|
|
328
328
|
--tag <Number> : ripple tag
|
|
329
|
+
--solanaValidator <String>: validator address to delegate to
|
|
330
|
+
--solanaStakeAccount <String>: stake account address to use in the transaction
|
|
329
331
|
--memoType <String> : stellar memo type
|
|
330
332
|
--memoValue <String> : stellar memo value
|
|
331
333
|
--storageLimit <String> : how much storageLimit. default is estimated with the recipient
|
|
@@ -467,6 +469,8 @@ Usage: ledger-live send # Send crypto-assets
|
|
|
467
469
|
--rewardDestination <String>: Reward destination
|
|
468
470
|
--fee <String> : how much fee
|
|
469
471
|
--tag <Number> : ripple tag
|
|
472
|
+
--solanaValidator <String>: validator address to delegate to
|
|
473
|
+
--solanaStakeAccount <String>: stake account address to use in the transaction
|
|
470
474
|
--memoType <String> : stellar memo type
|
|
471
475
|
--memoValue <String> : stellar memo value
|
|
472
476
|
--storageLimit <String> : how much storageLimit. default is estimated with the recipient
|
|
@@ -482,8 +486,9 @@ Usage: ledger-live send # Send crypto-assets
|
|
|
482
486
|
Usage: ledger-live signMessage # Sign a message with the device on specific derivations (advanced)
|
|
483
487
|
-c, --currency <String> : Currency name or ticker. If not provided, it will be inferred from the device.
|
|
484
488
|
--path <String> : HDD derivation path
|
|
485
|
-
--derivationMode <String>: derivationMode to use
|
|
486
489
|
--message <String> : the message to sign
|
|
490
|
+
--rawMessage <String> : raw message to sign (used by walletconnect)
|
|
491
|
+
--parser <String> : parser used for the message. Default: String
|
|
487
492
|
|
|
488
493
|
Usage: ledger-live speculosList # list apps available for speculos
|
|
489
494
|
|
|
@@ -518,6 +523,10 @@ Usage: ledger-live sync # Synchronize accounts with blockchain
|
|
|
518
523
|
--paginateOperations <Number>: if defined, will paginate operations
|
|
519
524
|
-f, --format <operationBalanceHistoryBackwards | operationBalanceHistory | json | head | default | basic | full | stats | significantTokenTickers>: how to display the data
|
|
520
525
|
|
|
526
|
+
Usage: ledger-live synchronousOnboarding # track the onboarding status of your device
|
|
527
|
+
-p, --pollingPeriodMs <Number>: polling period in milliseconds
|
|
528
|
+
-d, --device <String> : provide a specific HID path of a device
|
|
529
|
+
|
|
521
530
|
Usage: ledger-live testDetectOpCollision # Detect operation collisions
|
|
522
531
|
-d, --device <String> : provide a specific HID path of a device
|
|
523
532
|
--xpub <String> : use an xpub (alternatively to --device) [DEPRECATED: prefer use of id]
|
|
@@ -574,5 +583,4 @@ Usage: ledger-live walletconnect # Create a walletconnect session
|
|
|
574
583
|
:::::::-.`
|
|
575
584
|
....``
|
|
576
585
|
|
|
577
|
-
|
|
578
586
|
```
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { OnboardingStatePollingResult } from "@ledgerhq/live-common/lib/hw/getOnboardingStatePolling";
|
|
2
|
+
import { Observable } from "rxjs";
|
|
3
|
+
declare const _default: {
|
|
4
|
+
description: string;
|
|
5
|
+
args: ({
|
|
6
|
+
name: string;
|
|
7
|
+
alias: string;
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
descOpt: string;
|
|
10
|
+
desc: string;
|
|
11
|
+
} | {
|
|
12
|
+
name: string;
|
|
13
|
+
alias: string;
|
|
14
|
+
desc: string;
|
|
15
|
+
type: NumberConstructor;
|
|
16
|
+
})[];
|
|
17
|
+
job: ({ device, pollingPeriodMs, }: Partial<{
|
|
18
|
+
device: string;
|
|
19
|
+
pollingPeriodMs: number;
|
|
20
|
+
}>) => Observable<OnboardingStatePollingResult | null>;
|
|
21
|
+
};
|
|
22
|
+
export default _default;
|
|
23
|
+
//# sourceMappingURL=synchronousOnboarding.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"synchronousOnboarding.d.ts","sourceRoot":"","sources":["../../src/commands/synchronousOnboarding.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,4BAA4B,EAC7B,MAAM,wDAAwD,CAAC;AAChE,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;;;;;;;;;;;;;;;;gBAkBtB,MAAM;yBACG,MAAM;WACpB,WAAW,4BAA4B,GAAG,IAAI,CAAC;;AAjBtD,wBAsBE"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
exports.__esModule = true;
|
|
3
|
+
var getOnboardingStatePolling_1 = require("@ledgerhq/live-common/lib/hw/getOnboardingStatePolling");
|
|
4
|
+
var scan_1 = require("../scan");
|
|
5
|
+
exports["default"] = {
|
|
6
|
+
description: "track the onboarding status of your device",
|
|
7
|
+
args: [
|
|
8
|
+
{
|
|
9
|
+
name: "pollingPeriodMs",
|
|
10
|
+
alias: "p",
|
|
11
|
+
desc: "polling period in milliseconds",
|
|
12
|
+
type: Number
|
|
13
|
+
},
|
|
14
|
+
scan_1.deviceOpt,
|
|
15
|
+
],
|
|
16
|
+
job: function (_a) {
|
|
17
|
+
var device = _a.device, pollingPeriodMs = _a.pollingPeriodMs;
|
|
18
|
+
return (0, getOnboardingStatePolling_1.getOnboardingStatePolling)({
|
|
19
|
+
deviceId: device !== null && device !== void 0 ? device : "",
|
|
20
|
+
pollingPeriodMs: pollingPeriodMs !== null && pollingPeriodMs !== void 0 ? pollingPeriodMs : 1000
|
|
21
|
+
});
|
|
22
|
+
}
|
|
23
|
+
};
|
|
24
|
+
//# sourceMappingURL=synchronousOnboarding.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"synchronousOnboarding.js","sourceRoot":"","sources":["../../src/commands/synchronousOnboarding.ts"],"names":[],"mappings":";;AAAA,oGAGgE;AAEhE,gCAAoC;AAEpC,qBAAe;IACb,WAAW,EAAE,4CAA4C;IACzD,IAAI,EAAE;QACJ;YACE,IAAI,EAAE,iBAAiB;YACvB,KAAK,EAAE,GAAG;YACV,IAAI,EAAE,gCAAgC;YACtC,IAAI,EAAE,MAAM;SACb;QACD,gBAAS;KACV;IACD,GAAG,EAAE,UAAC,EAMJ;YALA,MAAM,YAAA,EACN,eAAe,qBAAA;QAKf,OAAA,IAAA,qDAAyB,EAAC;YACxB,QAAQ,EAAE,MAAM,aAAN,MAAM,cAAN,MAAM,GAAI,EAAE;YACtB,eAAe,EAAE,eAAe,aAAf,eAAe,cAAf,eAAe,GAAI,IAAI;SACzC,CAAC;IAHF,CAGE;CACL,CAAC"}
|
package/lib/commands-index.d.ts
CHANGED
|
@@ -1360,6 +1360,25 @@ declare const _default: {
|
|
|
1360
1360
|
format: string;
|
|
1361
1361
|
}) => import("rxjs").Observable<any>;
|
|
1362
1362
|
};
|
|
1363
|
+
synchronousOnboarding: {
|
|
1364
|
+
description: string;
|
|
1365
|
+
args: ({
|
|
1366
|
+
name: string;
|
|
1367
|
+
alias: string;
|
|
1368
|
+
type: StringConstructor;
|
|
1369
|
+
descOpt: string;
|
|
1370
|
+
desc: string;
|
|
1371
|
+
} | {
|
|
1372
|
+
name: string;
|
|
1373
|
+
alias: string;
|
|
1374
|
+
desc: string;
|
|
1375
|
+
type: NumberConstructor;
|
|
1376
|
+
})[];
|
|
1377
|
+
job: ({ device, pollingPeriodMs, }: Partial<{
|
|
1378
|
+
device: string;
|
|
1379
|
+
pollingPeriodMs: number;
|
|
1380
|
+
}>) => import("rxjs").Observable<import("@ledgerhq/live-common/lib/hw/getOnboardingStatePolling").OnboardingStatePollingResult | null>;
|
|
1381
|
+
};
|
|
1363
1382
|
testDetectOpCollision: {
|
|
1364
1383
|
description: string;
|
|
1365
1384
|
args: ({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"commands-index.d.ts","sourceRoot":"","sources":["../src/commands-index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"commands-index.d.ts","sourceRoot":"","sources":["../src/commands-index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAkDA,wBAkDE"}
|
package/lib/commands-index.js
CHANGED
|
@@ -46,6 +46,7 @@ var signMessage_1 = __importDefault(require("./commands/signMessage"));
|
|
|
46
46
|
var speculosList_1 = __importDefault(require("./commands/speculosList"));
|
|
47
47
|
var swap_1 = __importDefault(require("./commands/swap"));
|
|
48
48
|
var sync_1 = __importDefault(require("./commands/sync"));
|
|
49
|
+
var synchronousOnboarding_1 = __importDefault(require("./commands/synchronousOnboarding"));
|
|
49
50
|
var testDetectOpCollision_1 = __importDefault(require("./commands/testDetectOpCollision"));
|
|
50
51
|
var testGetTrustedInputFromTxHash_1 = __importDefault(require("./commands/testGetTrustedInputFromTxHash"));
|
|
51
52
|
var user_1 = __importDefault(require("./commands/user"));
|
|
@@ -95,6 +96,7 @@ exports["default"] = {
|
|
|
95
96
|
speculosList: speculosList_1["default"],
|
|
96
97
|
swap: swap_1["default"],
|
|
97
98
|
sync: sync_1["default"],
|
|
99
|
+
synchronousOnboarding: synchronousOnboarding_1["default"],
|
|
98
100
|
testDetectOpCollision: testDetectOpCollision_1["default"],
|
|
99
101
|
testGetTrustedInputFromTxHash: testGetTrustedInputFromTxHash_1["default"],
|
|
100
102
|
user: user_1["default"],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"commands-index.js","sourceRoot":"","sources":["../src/commands-index.ts"],"names":[],"mappings":";;;;;AAAA,uDAAiC;AACjC,+EAAyD;AACzD,+FAAyE;AACzE,6EAAuD;AACvD,mFAA6D;AAC7D,6EAAuD;AACvD,uDAAiC;AACjC,yEAAmD;AACnD,uEAAiD;AACjD,mEAA6C;AAC7C,2EAAqD;AACrD,2EAAqD;AACrD,qEAA+C;AAC/C,2FAAqE;AACrE,iFAA2D;AAC3D,qEAA+C;AAC/C,2EAAqD;AACrD,+EAAyD;AACzD,yDAAmC;AACnC,yFAAmE;AACnE,6EAAuD;AACvD,6EAAuD;AACvD,6EAAuD;AACvD,iGAA2E;AAC3E,+FAAyE;AACzE,yEAAmD;AACnD,qEAA+C;AAC/C,yFAAmE;AACnE,iEAA2C;AAC3C,uFAAiE;AACjE,+EAAyD;AACzD,mEAA6C;AAC7C,2DAAqC;AACrC,+DAAyC;AACzC,yDAAmC;AACnC,iEAA2C;AAC3C,6EAAuD;AACvD,+EAAyD;AACzD,yDAAmC;AACnC,uEAAiD;AACjD,yEAAmD;AACnD,yDAAmC;AACnC,yDAAmC;AACnC,2FAAqE;AACrE,2GAAqF;AACrF,yDAAmC;AACnC,+DAAyC;AACzC,2EAAqD;AAErD,qBAAe;IACb,GAAG,kBAAA;IACH,eAAe,8BAAA;IACf,uBAAuB,sCAAA;IACvB,cAAc,6BAAA;IACd,iBAAiB,gCAAA;IACjB,cAAc,6BAAA;IACd,GAAG,kBAAA;IACH,YAAY,2BAAA;IACZ,WAAW,0BAAA;IACX,SAAS,wBAAA;IACT,aAAa,4BAAA;IACb,aAAa,4BAAA;IACb,UAAU,yBAAA;IACV,qBAAqB,oCAAA;IACrB,gBAAgB,+BAAA;IAChB,UAAU,yBAAA;IACV,aAAa,4BAAA;IACb,eAAe,8BAAA;IACf,IAAI,mBAAA;IACJ,oBAAoB,mCAAA;IACpB,cAAc,6BAAA;IACd,cAAc,6BAAA;IACd,cAAc,6BAAA;IACd,wBAAwB,uCAAA;IACxB,uBAAuB,sCAAA;IACvB,YAAY,2BAAA;IACZ,UAAU,yBAAA;IACV,oBAAoB,mCAAA;IACpB,QAAQ,uBAAA;IACR,mBAAmB,kCAAA;IACnB,eAAe,8BAAA;IACf,SAAS,wBAAA;IACT,KAAK,oBAAA;IACL,OAAO,sBAAA;IACP,IAAI,mBAAA;IACJ,QAAQ,uBAAA;IACR,cAAc,6BAAA;IACd,eAAe,8BAAA;IACf,IAAI,mBAAA;IACJ,WAAW,0BAAA;IACX,YAAY,2BAAA;IACZ,IAAI,mBAAA;IACJ,IAAI,mBAAA;IACJ,qBAAqB,oCAAA;IACrB,6BAA6B,4CAAA;IAC7B,IAAI,mBAAA;IACJ,OAAO,sBAAA;IACP,aAAa,4BAAA;CACd,CAAC"}
|
|
1
|
+
{"version":3,"file":"commands-index.js","sourceRoot":"","sources":["../src/commands-index.ts"],"names":[],"mappings":";;;;;AAAA,uDAAiC;AACjC,+EAAyD;AACzD,+FAAyE;AACzE,6EAAuD;AACvD,mFAA6D;AAC7D,6EAAuD;AACvD,uDAAiC;AACjC,yEAAmD;AACnD,uEAAiD;AACjD,mEAA6C;AAC7C,2EAAqD;AACrD,2EAAqD;AACrD,qEAA+C;AAC/C,2FAAqE;AACrE,iFAA2D;AAC3D,qEAA+C;AAC/C,2EAAqD;AACrD,+EAAyD;AACzD,yDAAmC;AACnC,yFAAmE;AACnE,6EAAuD;AACvD,6EAAuD;AACvD,6EAAuD;AACvD,iGAA2E;AAC3E,+FAAyE;AACzE,yEAAmD;AACnD,qEAA+C;AAC/C,yFAAmE;AACnE,iEAA2C;AAC3C,uFAAiE;AACjE,+EAAyD;AACzD,mEAA6C;AAC7C,2DAAqC;AACrC,+DAAyC;AACzC,yDAAmC;AACnC,iEAA2C;AAC3C,6EAAuD;AACvD,+EAAyD;AACzD,yDAAmC;AACnC,uEAAiD;AACjD,yEAAmD;AACnD,yDAAmC;AACnC,yDAAmC;AACnC,2FAAqE;AACrE,2FAAqE;AACrE,2GAAqF;AACrF,yDAAmC;AACnC,+DAAyC;AACzC,2EAAqD;AAErD,qBAAe;IACb,GAAG,kBAAA;IACH,eAAe,8BAAA;IACf,uBAAuB,sCAAA;IACvB,cAAc,6BAAA;IACd,iBAAiB,gCAAA;IACjB,cAAc,6BAAA;IACd,GAAG,kBAAA;IACH,YAAY,2BAAA;IACZ,WAAW,0BAAA;IACX,SAAS,wBAAA;IACT,aAAa,4BAAA;IACb,aAAa,4BAAA;IACb,UAAU,yBAAA;IACV,qBAAqB,oCAAA;IACrB,gBAAgB,+BAAA;IAChB,UAAU,yBAAA;IACV,aAAa,4BAAA;IACb,eAAe,8BAAA;IACf,IAAI,mBAAA;IACJ,oBAAoB,mCAAA;IACpB,cAAc,6BAAA;IACd,cAAc,6BAAA;IACd,cAAc,6BAAA;IACd,wBAAwB,uCAAA;IACxB,uBAAuB,sCAAA;IACvB,YAAY,2BAAA;IACZ,UAAU,yBAAA;IACV,oBAAoB,mCAAA;IACpB,QAAQ,uBAAA;IACR,mBAAmB,kCAAA;IACnB,eAAe,8BAAA;IACf,SAAS,wBAAA;IACT,KAAK,oBAAA;IACL,OAAO,sBAAA;IACP,IAAI,mBAAA;IACJ,QAAQ,uBAAA;IACR,cAAc,6BAAA;IACd,eAAe,8BAAA;IACf,IAAI,mBAAA;IACJ,WAAW,0BAAA;IACX,YAAY,2BAAA;IACZ,IAAI,mBAAA;IACJ,IAAI,mBAAA;IACJ,qBAAqB,oCAAA;IACrB,qBAAqB,oCAAA;IACrB,6BAA6B,4CAAA;IAC7B,IAAI,mBAAA;IACJ,OAAO,sBAAA;IACP,aAAa,4BAAA;CACd,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ledgerhq/live-cli",
|
|
3
|
-
"version": "22.0.
|
|
3
|
+
"version": "22.0.3-next.0",
|
|
4
4
|
"description": "ledger-live CLI version",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -22,13 +22,13 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@ledgerhq/cryptoassets": "^6.29.0",
|
|
24
24
|
"@ledgerhq/errors": "^6.10.0",
|
|
25
|
-
"@ledgerhq/hw-app-btc": "^
|
|
25
|
+
"@ledgerhq/hw-app-btc": "^7.0.0-next.0",
|
|
26
26
|
"@ledgerhq/hw-transport": "^6.27.1",
|
|
27
27
|
"@ledgerhq/hw-transport-http": "^6.27.1",
|
|
28
28
|
"@ledgerhq/hw-transport-mocker": "^6.27.1",
|
|
29
29
|
"@ledgerhq/hw-transport-node-hid": "^6.27.1",
|
|
30
30
|
"@ledgerhq/hw-transport-node-speculos": "^6.27.1",
|
|
31
|
-
"@ledgerhq/live-common": "^24.0.0",
|
|
31
|
+
"@ledgerhq/live-common": "^24.1.0-next.0",
|
|
32
32
|
"@ledgerhq/logs": "^6.10.0",
|
|
33
33
|
"@walletconnect/client": "^1.7.1",
|
|
34
34
|
"asciichart": "^1.5.25",
|