ln-service 53.22.0 → 53.23.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
+ ## 53.23.0
4
+
5
+ - `getChainFeeEstimate`: Add support for specifying min `utxo_confirmations`
6
+
3
7
  ## 53.22.0
4
8
 
5
9
  - `parsePaymentRequest`: Add support for parsing payment request metadata
package/README.md CHANGED
@@ -48,7 +48,7 @@ If you're going to use extended gRPC APIs, make sure to add the APIs to make
48
48
  tags.
49
49
 
50
50
  ```sh
51
- make && make install tags="autopilotrpc chainrpc invoicesrpc routerrpc signrpc walletrpc watchtowerrpc wtclientrpc"
51
+ make && make install tags="autopilotrpc chainrpc invoicesrpc peersrpc routerrpc signrpc walletrpc watchtowerrpc wtclientrpc"
52
52
  ```
53
53
 
54
54
  ## Using gRPC
@@ -1437,6 +1437,8 @@ Get a chain fee estimate for a prospective chain send
1437
1437
 
1438
1438
  Requires `onchain:read` permission
1439
1439
 
1440
+ Specifying 0 for `utxo_confirmations` is not supported in LND 0.13.0 or below
1441
+
1440
1442
  {
1441
1443
  lnd: <Authenticated LND API Object>
1442
1444
  send_to: [{
@@ -5545,6 +5547,7 @@ LND 0.15.0 and below do not support `is_trusted_funding`
5545
5547
  {
5546
5548
  accept: <Accept Request Function> ({
5547
5549
  [cooperative_close_address]: <Restrict Coop Close To Address String>
5550
+ [is_trusted_funding]: <Accept Funding as Trusted Bool>
5548
5551
  [min_confirmations]: <Required Confirmations Before Channel Open Number>
5549
5552
  [remote_csv]: <Peer Unilateral Balance Output CSV Delay Number>
5550
5553
  [remote_reserve]: <Minimum Tokens Peer Must Keep On Their Side Number>
@@ -5558,6 +5561,7 @@ LND 0.15.0 and below do not support `is_trusted_funding`
5558
5561
  csv_delay: <CSV Delay Blocks Number>
5559
5562
  id: <Request Id Hex String>
5560
5563
  is_private: <Incoming Channel Is Private Bool>
5564
+ is_trusted_funding: <Request Immediate Trusted Funding Bool>
5561
5565
  local_balance: <Channel Local Tokens Balance Number>
5562
5566
  local_reserve: <Channel Local Reserve Tokens Number>
5563
5567
  max_pending_mtokens: <Maximum Millitokens Pending In Channel String>
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "cors": "2.8.5",
12
12
  "express": "4.18.1",
13
13
  "invoices": "2.2.0",
14
- "lightning": "5.20.2",
14
+ "lightning": "5.21.0",
15
15
  "macaroon": "3.0.4",
16
16
  "morgan": "1.10.0",
17
17
  "ws": "8.8.1"
@@ -29,7 +29,7 @@
29
29
  "bs58check": "2.1.2",
30
30
  "ecpair": "2.0.1",
31
31
  "ln-docker-daemons": "2.3.6",
32
- "p2tr": "1.3.1",
32
+ "p2tr": "1.3.2",
33
33
  "portfinder": "1.0.32",
34
34
  "psbt": "2.7.1",
35
35
  "rimraf": "3.0.2",
@@ -71,5 +71,5 @@
71
71
  "integration-test-0.12.0": "DOCKER_LND_VERSION=v0.12.0-beta npm run test",
72
72
  "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"
73
73
  },
74
- "version": "53.22.0"
74
+ "version": "53.23.0"
75
75
  }