balanceofsatoshis 19.3.1 → 19.3.3

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/CHANGELOG.md +4 -0
  2. package/README.md +1 -3
  3. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Versions
2
2
 
3
+ ## 19.3.3
4
+
5
+ - Add support for LND 0.18.3
6
+
3
7
  ## 19.3.1
4
8
 
5
9
  - `fund`: Fix validation for funding when using `--select-utxos`
package/README.md CHANGED
@@ -7,7 +7,7 @@ Commands for working with LND balances.
7
7
 
8
8
  Supported LND versions:
9
9
 
10
- - v0.18.0-beta to v0.18.2-beta
10
+ - v0.18.0-beta to v0.18.3-beta
11
11
  - v0.17.0-beta to v0.17.5-beta
12
12
  - v0.16.0-beta to v0.16.4-beta
13
13
  - v0.15.2-beta to v0.15.5-beta
@@ -26,7 +26,6 @@ Or use a platform-specific guide:
26
26
  - [RaspiBlitz install guide][raspiblitz-install-guide]
27
27
  - [RaspiBolt/Debian guide][raspibolt-install-guide]
28
28
  - [Umbrel install guide][umbrel-install-guide]
29
- - [Voltage install guide][voltage-install-guide]
30
29
 
31
30
  If you want to try out any command without npm install, you can also do `npx
32
31
  balanceofsatoshis` to run a command directly.
@@ -733,4 +732,3 @@ bos inbound-channel rules --rule "if(private,capacity >= 9*m,capacity >= 5*m)"
733
732
  [raspiblitz-install-guide]: https://gist.github.com/openoms/823f99d1ab6e1d53285e489f7ba38602
734
733
  [raspibolt-install-guide]: https://raspibolt.org/guide/bonus/lightning/balance-of-satoshis.html
735
734
  [umbrel-install-guide]: https://web.archive.org/web/20240711203839/https://plebnet.wiki/wiki/Umbrel_-_Installing_BoS
736
- [voltage-install-guide]: https://docs.voltage.cloud/balance-of-satoshis-guides/balance-of-satoshis
package/package.json CHANGED
@@ -17,7 +17,7 @@
17
17
  "@alexbosworth/node-fetch": "2.6.2",
18
18
  "abort-controller": "3.0.0",
19
19
  "asciichart": "1.5.25",
20
- "async": "3.2.5",
20
+ "async": "3.2.6",
21
21
  "asyncjs-util": "1.2.12",
22
22
  "bech32": "2.0.0",
23
23
  "bip66": "2.0.0",
@@ -30,16 +30,16 @@
30
30
  "crypto-js": "4.2.0",
31
31
  "csv-parse": "5.5.6",
32
32
  "ecpair": "2.1.0",
33
- "goldengate": "14.0.7",
34
- "grammy": "1.28.0",
33
+ "goldengate": "14.0.8",
34
+ "grammy": "1.30.0",
35
35
  "hot-formula-parser": "4.0.0",
36
36
  "import-lazy": "4.0.0",
37
- "ini": "4.1.3",
38
- "inquirer": "10.1.8",
39
- "ln-accounting": "8.0.3",
40
- "ln-service": "57.18.0",
41
- "ln-sync": "6.1.0",
42
- "ln-telegram": "6.1.6",
37
+ "ini": "5.0.0",
38
+ "inquirer": "10.2.2",
39
+ "ln-accounting": "8.0.4",
40
+ "ln-service": "57.20.2",
41
+ "ln-sync": "6.4.0",
42
+ "ln-telegram": "6.1.7",
43
43
  "minimist": "1.2.8",
44
44
  "moment": "2.30.1",
45
45
  "paid-services": "6.1.5",
@@ -56,7 +56,7 @@
56
56
  "description": "Lightning balance CLI",
57
57
  "devDependencies": {
58
58
  "invoices": "3.0.0",
59
- "ln-docker-daemons": "6.0.22"
59
+ "ln-docker-daemons": "6.0.23"
60
60
  },
61
61
  "engines": {
62
62
  "node": ">=18"
@@ -83,5 +83,5 @@
83
83
  "postpublish": "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t alexbosworth/balanceofsatoshis -t alexbosworth/balanceofsatoshis:$npm_package_version --push .",
84
84
  "test": "npx nyc@17.0.0 node --experimental-test-coverage --test test/arrays/*.js test/balances/*.js test/chain/*.js test/display/*.js test/encryption/*.js test/lnd/*.js test/network/*.js test/nodes/*.js test/peers/*.js test/responses/*.js test/routing/*.js test/services/*.js test/swaps/*.js test/tags/*.js test/telegram/*.js test/wallets/*.js"
85
85
  },
86
- "version": "19.3.1"
86
+ "version": "19.3.3"
87
87
  }