ln-service 57.25.2 → 57.26.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.26.0
4
+
5
+ - `openChannels` add `is_allowing_minimal_reserve` to allow low peer reserve
6
+
3
7
  ## 57.25.2
4
8
 
5
9
  - Add support for LND 0.19.1-beta
package/README.md CHANGED
@@ -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.0",
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
  },
@@ -78,5 +78,5 @@
78
78
  "integration-test-0.14.4": "DOCKER_LND_VERSION=v0.14.4-beta npm run test",
79
79
  "test": "echo $DOCKER_LND_VERSION && node test/runner"
80
80
  },
81
- "version": "57.25.2"
81
+ "version": "57.26.0"
82
82
  }