neutron-cli 0.1.6 → 0.1.7
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 +10 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,13 +5,19 @@ CLI for [Neutron](https://neutron.me) Lightning wallet services — for develope
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
# Run without installing
|
|
9
|
-
npx neutron-cli --help
|
|
10
|
-
|
|
11
|
-
# Or install globally
|
|
12
8
|
npm install -g neutron-cli
|
|
13
9
|
```
|
|
14
10
|
|
|
11
|
+
Then use it from anywhere:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
neutron-cli auth
|
|
15
|
+
neutron-cli balance
|
|
16
|
+
neutron-cli rate
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
> **Note:** If you just want to try it without installing, use `npx neutron-cli --help`. But for regular use, global install is recommended.
|
|
20
|
+
|
|
15
21
|
## Auth
|
|
16
22
|
|
|
17
23
|
Set your credentials as environment variables:
|