ln-service 57.26.1 → 57.27.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,14 @@
1
1
  # Versions
2
2
 
3
+ ## 57.27.0
4
+
5
+ - `getPendingChannels`: Add support for `opening_funding_height`,
6
+ `opening_waiting_blocks`
7
+
8
+ ## 57.26.2
9
+
10
+ - Add support for LND 0.19.3-beta
11
+
3
12
  ## 57.26.1
4
13
 
5
14
  - Add support for LND 0.19.2-beta
package/README.md CHANGED
@@ -9,7 +9,7 @@ through npm.
9
9
 
10
10
  Supported LND versions:
11
11
 
12
- - v0.19.0-beta to v0.19.2-beta
12
+ - v0.19.0-beta to v0.19.3-beta
13
13
  - v0.18.0-beta to v0.18.5-beta
14
14
  - v0.17.0-beta to v0.17.5-beta
15
15
  - v0.16.0-beta to v0.16.4-beta
@@ -3231,6 +3231,10 @@ Requires `offchain:read` permission
3231
3231
 
3232
3232
  `close_transaction` is not supported in LND 0.17.5 or before
3233
3233
 
3234
+ `opening_funding_height` is not supported in LND 0.19.3 or before
3235
+
3236
+ `opening_waiting_blocks` is not supported in LND 0.19.3 or before
3237
+
3234
3238
  {
3235
3239
  lnd: <Authenticated LND API Object>
3236
3240
  }
@@ -3251,6 +3255,8 @@ Requires `offchain:read` permission
3251
3255
  is_timelocked: <Channel Local Funds Constrained by Timelock Script Bool>
3252
3256
  local_balance: <Channel Local Tokens Balance Number>
3253
3257
  local_reserve: <Channel Local Reserved Tokens Number>
3258
+ [opening_funding_height]: <Funding Seen At Best Block Height Number>
3259
+ [opening_waiting_blocks]: <Open Activation Waiting Blocks Count Number>
3254
3260
  partner_public_key: <Channel Peer Public Key String>
3255
3261
  [pending_balance]: <Tokens Pending Recovery Number>
3256
3262
  [pending_payments]: [{
@@ -3289,6 +3295,7 @@ Get pending payments made through channels.
3289
3295
  Requires `offchain:read` permission
3290
3296
 
3291
3297
  `created_after` is not supported on LND 0.15.5 and below
3298
+
3292
3299
  `created_before` is not supported on LND 0.15.5 and below
3293
3300
 
3294
3301
  {
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "dependencies": {
10
10
  "bolt07": "1.9.4",
11
11
  "invoices": "4.0.0",
12
- "lightning": "10.26.1",
12
+ "lightning": "10.27.0",
13
13
  "macaroon": "3.0.4"
14
14
  },
15
15
  "description": "Interaction helper for your Lightning Network daemon",
@@ -24,13 +24,13 @@
24
24
  "bn.js": "5.2.2",
25
25
  "bs58check": "4.0.0",
26
26
  "ecpair": "3.0.0",
27
- "ln-docker-daemons": "6.0.25",
27
+ "ln-docker-daemons": "6.0.27",
28
28
  "p2tr": "2.0.0",
29
- "portfinder": "1.0.37",
29
+ "portfinder": "1.0.38",
30
30
  "psbt": "4.0.0",
31
31
  "rimraf": "6.0.1",
32
32
  "tiny-secp256k1": "2.2.4",
33
- "uuid": "11.1.0",
33
+ "uuid": "13.0.0",
34
34
  "varuint-bitcoin": "2.0.0"
35
35
  },
36
36
  "engines": {
@@ -51,6 +51,7 @@
51
51
  "url": "https://github.com/alexbosworth/ln-service.git"
52
52
  },
53
53
  "scripts": {
54
+ "integration-test-0.19.3": "DOCKER_LND_VERSION=v0.19.3-beta npm run test",
54
55
  "integration-test-0.19.2": "DOCKER_LND_VERSION=v0.19.2-beta npm run test",
55
56
  "integration-test-0.19.1": "DOCKER_LND_VERSION=v0.19.1-beta npm run test",
56
57
  "integration-test-0.19.0": "DOCKER_LND_VERSION=v0.19.0-beta npm run test",
@@ -79,5 +80,5 @@
79
80
  "integration-test-0.14.4": "DOCKER_LND_VERSION=v0.14.4-beta npm run test",
80
81
  "test": "echo $DOCKER_LND_VERSION && node test/runner"
81
82
  },
82
- "version": "57.26.1"
83
+ "version": "57.27.0"
83
84
  }