ln-service 57.3.0 → 57.4.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 CHANGED
@@ -1,5 +1,9 @@
1
1
  # Versions
2
2
 
3
+ ## 57.4.0
4
+
5
+ - `getConnectedWatchtowers`: Add `is_taproot` to get P2TR channels
6
+
3
7
  ## 57.3.0
4
8
 
5
9
  - `getConfiguration`: Add method to return configuration information
package/README.md CHANGED
@@ -2013,7 +2013,13 @@ Requires `offchain:read` permission
2013
2013
 
2014
2014
  Includes previously connected watchtowers
2015
2015
 
2016
+ `is_anchor` flag is not supported on LND 0.11.1 and below
2017
+
2018
+ `is_taproot` flag is not supported on LND 0.17.3 and below
2019
+
2016
2020
  {
2021
+ [is_anchor]: <Get Anchor Type Tower Info Bool>
2022
+ [is_taproot]: <Get Taproot Type Tower Info Bool>
2017
2023
  lnd: <Authenticated LND API Object>
2018
2024
  }
2019
2025
 
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "dependencies": {
10
10
  "bolt07": "1.8.4",
11
11
  "invoices": "3.0.0",
12
- "lightning": "10.3.1",
12
+ "lightning": "10.4.0",
13
13
  "macaroon": "3.0.4"
14
14
  },
15
15
  "description": "Interaction helper for your Lightning Network daemon",
@@ -24,7 +24,7 @@
24
24
  "bn.js": "5.2.1",
25
25
  "bs58check": "3.0.1",
26
26
  "ecpair": "2.1.0",
27
- "ln-docker-daemons": "6.0.7",
27
+ "ln-docker-daemons": "6.0.8",
28
28
  "p2tr": "2.0.0",
29
29
  "portfinder": "1.0.32",
30
30
  "psbt": "3.0.0",
@@ -69,5 +69,5 @@
69
69
  "integration-test-0.14.4": "DOCKER_LND_VERSION=v0.14.4-beta npm run test",
70
70
  "test": "echo $DOCKER_LND_VERSION && node test/runner"
71
71
  },
72
- "version": "57.3.0"
72
+ "version": "57.4.0"
73
73
  }