ln-service 54.10.7 → 55.0.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,16 @@
1
1
  # Versions
2
2
 
3
+ ## 55.0.0
4
+
5
+ - `openChannel`: Add `is_max_funding` to fund a channel maximally
6
+ - `subscribeToRpcRequests`: Add support for returning `is_max_funding` in
7
+ `open_channel_request`
8
+
9
+ ### Breaking Changes
10
+
11
+ - `subscribeToRpcRequests`: `open_channel_request`: `local_tokens` is now an
12
+ optional value
13
+
3
14
  ## 54.10.7
4
15
 
5
16
  - `signChainAddressMessage`: Add method to sign a message given a chain address
package/README.md CHANGED
@@ -3697,12 +3697,15 @@ Requires `offchain:write`, `onchain:write`, `peers:write` permissions
3697
3697
  `base_fee_mtokens` is not supported on LND 0.15.5 and below
3698
3698
  `fee_rate` is not supported on LND 0.15.5 and below
3699
3699
 
3700
+ `is_max_funding` is not supported on LND 0.16.0 and below
3701
+
3700
3702
  {
3701
3703
  [base_fee_mtokens]: <Routing Base Fee Millitokens Charged String>
3702
3704
  [chain_fee_tokens_per_vbyte]: <Chain Fee Tokens Per VByte Number>
3703
3705
  [cooperative_close_address]: <Restrict Cooperative Close To Address String>
3704
3706
  [fee_rate]: <Routing Fee Rate In Millitokens Per Million Number>
3705
3707
  [give_tokens]: <Tokens to Gift To Partner Number> // Defaults to zero
3708
+ [is_max_funding]: <Use Maximal Chain Funds For Local Funding Bool>
3706
3709
  [is_private]: <Channel is Private Bool> // Defaults to false
3707
3710
  lnd: <Authenticated LND API Object>
3708
3711
  local_tokens: <Total Channel Capacity Tokens Number>
@@ -6826,7 +6829,9 @@ This method is not supported in LND 0.13.4 and below
6826
6829
  [fee_rate]: <Routing Fee Rate In Millitokens Per Million Number>
6827
6830
  [give_tokens]: <Tokens to Gift To Partner Number>
6828
6831
  [is_private]: <Channel is Private Bool>
6829
- local_tokens: <Local Tokens Number>
6832
+ [is_max_funding]: <Use Maximal Chain Funds For Local Funding Bool>
6833
+ [is_private]: <Channel is Private Bool>
6834
+ [local_tokens]: <Local Tokens Number>
6830
6835
  [min_confirmations]: <Spend UTXOs With Minimum Confirmations Number>
6831
6836
  [min_htlc_mtokens]: <Minimum HTLC Millitokens String>
6832
6837
  [partner_csv_delay]: <Peer Output CSV Delay Number>
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "cors": "2.8.5",
12
12
  "express": "4.18.2",
13
13
  "invoices": "2.2.3",
14
- "lightning": "7.1.9",
14
+ "lightning": "8.0.0",
15
15
  "macaroon": "3.0.4",
16
16
  "morgan": "1.10.0",
17
17
  "ws": "8.13.0"
@@ -28,11 +28,11 @@
28
28
  "bn.js": "5.2.1",
29
29
  "bs58check": "3.0.1",
30
30
  "ecpair": "2.1.0",
31
- "ln-docker-daemons": "4.1.3",
31
+ "ln-docker-daemons": "4.1.4",
32
32
  "p2tr": "1.3.3",
33
33
  "portfinder": "1.0.32",
34
34
  "psbt": "2.7.2",
35
- "rimraf": "4.4.1",
35
+ "rimraf": "5.0.0",
36
36
  "secp256k1": "5.0.0",
37
37
  "tiny-secp256k1": "2.2.1",
38
38
  "uuid": "9.0.0",
@@ -65,5 +65,5 @@
65
65
  "integration-test-0.14.4": "DOCKER_LND_VERSION=v0.14.4-beta npm run test",
66
66
  "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/peersrpc-integration/*.js test/routerrpc-integration/*.js test/signerrpc-integration/*.js test/tower_clientrpc-integration/*.js test/tower_serverrpc-integration/*.js test/walletrpc-integration/*.js"
67
67
  },
68
- "version": "54.10.7"
68
+ "version": "55.0.0"
69
69
  }