ln-service 57.25.2 → 57.26.1

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,13 @@
1
1
  # Versions
2
2
 
3
+ ## 57.26.1
4
+
5
+ - Add support for LND 0.19.2-beta
6
+
7
+ ## 57.26.0
8
+
9
+ - `openChannels` add `is_allowing_minimal_reserve` to allow low peer reserve
10
+
3
11
  ## 57.25.2
4
12
 
5
13
  - Add support for LND 0.19.1-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.1-beta
12
+ - v0.19.0-beta to v0.19.2-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
@@ -4147,6 +4147,8 @@ as well as a channel open request listener to accept the trusted funding.
4147
4147
  `base_fee_mtokens` is not supported on LND 0.15.5 and below
4148
4148
  `fee_rate` is not supported on LND 0.15.5 and below
4149
4149
 
4150
+ `is_allowing_minimal_reserve` is not supported on LND 0.15.0 and below
4151
+
4150
4152
  `description` is not supported on LND 0.16.4 and below
4151
4153
 
4152
4154
  `is_simplified_taproot` is not supported on LND 0.16.4 and below and requires
@@ -4160,6 +4162,7 @@ as well as a channel open request listener to accept the trusted funding.
4160
4162
  [description]: <Immutable Channel Description String>
4161
4163
  [fee_rate]: <Routing Fee Rate In Millitokens Per Million Number>
4162
4164
  [give_tokens]: <Tokens to Gift To Partner Number> // Defaults to zero
4165
+ [is_allowing_minimal_reserve]: <Allow Peer to Have Minimal Reserve Bool>
4163
4166
  [is_private]: <Channel is Private Bool> // Defaults to false
4164
4167
  [is_simplified_taproot]: <Channel is Simplified Taproot Type Bool>
4165
4168
  [is_trusted_funding]: <Peer Should Avoid Waiting For Confirmation Bool>
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.25.3",
12
+ "lightning": "10.26.1",
13
13
  "macaroon": "3.0.4"
14
14
  },
15
15
  "description": "Interaction helper for your Lightning Network daemon",
@@ -29,7 +29,7 @@
29
29
  "portfinder": "1.0.37",
30
30
  "psbt": "4.0.0",
31
31
  "rimraf": "6.0.1",
32
- "tiny-secp256k1": "2.2.3",
32
+ "tiny-secp256k1": "2.2.4",
33
33
  "uuid": "11.1.0",
34
34
  "varuint-bitcoin": "2.0.0"
35
35
  },
@@ -51,6 +51,7 @@
51
51
  "url": "https://github.com/alexbosworth/ln-service.git"
52
52
  },
53
53
  "scripts": {
54
+ "integration-test-0.19.2": "DOCKER_LND_VERSION=v0.19.2-beta npm run test",
54
55
  "integration-test-0.19.1": "DOCKER_LND_VERSION=v0.19.1-beta npm run test",
55
56
  "integration-test-0.19.0": "DOCKER_LND_VERSION=v0.19.0-beta npm run test",
56
57
  "integration-test-0.18.5": "DOCKER_LND_VERSION=v0.18.5-beta npm run test",
@@ -78,5 +79,5 @@
78
79
  "integration-test-0.14.4": "DOCKER_LND_VERSION=v0.14.4-beta npm run test",
79
80
  "test": "echo $DOCKER_LND_VERSION && node test/runner"
80
81
  },
81
- "version": "57.25.2"
82
+ "version": "57.26.1"
82
83
  }