@dfinity/hardware-wallet-cli 0.6.0-next-2025-11-24 → 0.6.0-next-2025-11-26

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.
Files changed (3) hide show
  1. package/README.md +13 -13
  2. package/dist/index.js +50 -44
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -11,24 +11,15 @@ A CLI to interact with the Internet Computer App on Ledger Nano S/X devices.
11
11
 
12
12
  ## Quick Start
13
13
 
14
- - Install `node >= 18.13.0`.
15
14
  - Install the CLI: `npm install -g @dfinity/hardware-wallet-cli`
16
15
  - Run the CLI: `ic-hardware-wallet --help`
17
16
 
18
- ## USB connection issues with Ledger Live
19
-
20
- In order to install the Internet Computer App on your Ledger device or perform
21
- the genuine check, you need to first connect your Ledger device with the Ledger
22
- Live desktop app running on your computer. If you are facing connection issues
23
- when doing so, Ledger provides platform-specific
24
- [troubleshooting instructions](https://support.ledger.com/hc/en-us/articles/115005165269-Fix-USB-connection-issues-with-Ledger-Live?support=true)
25
- on their support site.
26
-
27
17
  ## Development
28
18
 
29
- Clone the repository.
30
-
31
- Install dependencies with `npm install`.
19
+ - Clone the repository.
20
+ - Run `mise install` to install the supported version of `npm`.
21
+ - If you don't have mise install, you can install it with `curl https://mise.run | sh`
22
+ - Install dependencies with `npm install`.
32
23
 
33
24
  To execute a command, you can use `npm run execute -- <args>`.
34
25
 
@@ -36,3 +27,12 @@ For example
36
27
 
37
28
  - The command `ic-hardware-wallet --network https://nnsdapp.dfinity.network icp balance`.
38
29
  - Would be `npm run execute -- --network http://127.0.0.1:4943 icp balance` for development.
30
+
31
+ ## USB connection issues with Ledger Live
32
+
33
+ In order to install the Internet Computer App on your Ledger device or perform
34
+ the genuine check, you need to first connect your Ledger device with the Ledger
35
+ Live desktop app running on your computer. If you are facing connection issues
36
+ when doing so, Ledger provides platform-specific
37
+ [troubleshooting instructions](https://support.ledger.com/hc/en-us/articles/115005165269-Fix-USB-connection-issues-with-Ledger-Live?support=true)
38
+ on their support site.