ln-service 53.0.1 → 53.1.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,10 @@
1
1
  # Versions
2
2
 
3
+ ## 53.1.0
4
+
5
+ - Add support for LND 0.14.1
6
+ - `openChannels`: Add `is_avoiding_broadcast` to avoid all funding broadcast
7
+
3
8
  ## 53.0.1
4
9
 
5
10
  - Removed support for determining the type of channel to support LND 0.14.0.
package/README.md CHANGED
@@ -249,9 +249,13 @@ for `unlocker` methods.
249
249
  - [bolt07](https://npmjs.com/package/bolt07) - bolt07 channel gossip utilities
250
250
  - [bolt09](https://npmjs.com/package/bolt09) - bolt09 feature flag utilities
251
251
  - [invoices](https://npmjs.com/package/invoices) - bolt11 request utilities
252
- - [lightning](https://npmjs.com/package/lightning) - general lightning utilities
252
+ - [lightning](https://npmjs.com/package/lightning) - methods with typescript
253
+ typing support
253
254
  - [ln-accounting](https://npmjs.com/package/ln-accounting) - accounting records
254
- - [ln-pathfinding](https://npmjs.com/package/ln-accounting) - pathfinding utilities
255
+ - [ln-docker-daemons](https://github.com/alexbosworth/ln-docker-daemons)
256
+ - run regtest integration tests
257
+ - [ln-pathfinding](https://npmjs.com/package/ln-accounting) - pathfinding
258
+ utilities
255
259
  - [probing](https://npmjs.com/package/probing) - payment probing utilities
256
260
  - [psbt](https://www.npmjs.com/package/psbt) - BIP 174 PSBT utilities
257
261
 
@@ -3236,6 +3240,9 @@ minutes to fund the channels.
3236
3240
  If you do not fund the channels, be sure to `cancelPendingChannel`s on each
3237
3241
  channel that was not funded.
3238
3242
 
3243
+ Use `is_avoiding_broadcast` only when self-publishing the raw transaction
3244
+ after the funding step.
3245
+
3239
3246
  {
3240
3247
  channels: [{
3241
3248
  capacity: <Channel Capacity Tokens Number>
@@ -3247,6 +3254,7 @@ channel that was not funded.
3247
3254
  [partner_csv_delay]: <Peer Output CSV Delay Number>
3248
3255
  [partner_socket]: <Peer Connection Host:Port String>
3249
3256
  }]
3257
+ is_avoiding_broadcast: <Avoid Broadcast of All Channels Bool>
3250
3258
  lnd: <Authenticated LND API Object>
3251
3259
  }
3252
3260
 
package/package.json CHANGED
@@ -11,10 +11,10 @@
11
11
  "cors": "2.8.5",
12
12
  "express": "4.17.1",
13
13
  "invoices": "2.0.2",
14
- "lightning": "5.0.1",
14
+ "lightning": "5.1.0",
15
15
  "macaroon": "3.0.4",
16
16
  "morgan": "1.10.0",
17
- "ws": "8.2.3"
17
+ "ws": "8.3.0"
18
18
  },
19
19
  "description": "Interaction helper for your Lightning Network daemon",
20
20
  "devDependencies": {
@@ -23,7 +23,7 @@
23
23
  "async": "3.2.2",
24
24
  "asyncjs-util": "1.2.7",
25
25
  "bip66": "1.1.5",
26
- "bitcoinjs-lib": "6.0.0",
26
+ "bitcoinjs-lib": "6.0.1",
27
27
  "bn.js": "5.2.0",
28
28
  "ecpair": "1.0.1",
29
29
  "ln-docker-daemons": "2.1.0",
@@ -54,5 +54,5 @@
54
54
  "scripts": {
55
55
  "test": "echo $DOCKER_LND_VERSION && tap -j 2 --branches=1 --functions=1 --lines=1 --statements=1 -t 200 test/autopilotrpc-integration/*.js test/chainrpc-integration/*.js test/integration/*.js test/invoicesrpc-integration/*.js test/routerrpc-integration/*.js test/signerrpc-integration/*.js test/tower_clientrpc-integration/*.js test/tower_serverrpc-integration/*.js test/walletrpc-integration/*.js"
56
56
  },
57
- "version": "53.0.1"
57
+ "version": "53.1.0"
58
58
  }