ln-service 57.14.4 → 57.16.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
+ ## 57.16.0
4
+
5
+ - `getClosedChannels`: Add support for anchor resolution status via new
6
+ attributes `anchor_is_confirmed`, `anchor_is_pending`, `anchor_spent_by`,
7
+ and `anchor_vout`
8
+
9
+ ## 57.15.0
10
+
11
+ - `authenticatedLndGrpc`, `unauthenticatedLndGrpc`: Add `path` to specify the
12
+ protos directory
13
+
3
14
  ## 57.14.4
4
15
 
5
16
  - `getChannel`: Add support for specifying `transaction_id` and
package/README.md CHANGED
@@ -9,7 +9,7 @@ through npm.
9
9
 
10
10
  Supported LND versions:
11
11
 
12
- - v0.18.0-beta to v0.18.1-beta
12
+ - v0.18.0-beta to v0.18.2-beta
13
13
  - v0.17.0-beta to v0.17.5-beta
14
14
  - v0.16.0-beta to v0.16.4-beta
15
15
  - v0.15.2-beta to v0.15.5-beta
@@ -426,6 +426,7 @@ Both the cert and macaroon expect the entire serialized LND generated file
426
426
  {
427
427
  [cert]: <Base64 or Hex Serialized LND TLS Cert>
428
428
  [macaroon]: <Base64 or Hex Serialized Macaroon String>
429
+ [path]: <Path to Proto Files Directory String>
429
430
  [socket]: <Host:Port String>
430
431
  }
431
432
 
@@ -2042,6 +2043,10 @@ Requires `offchain:read` permission
2042
2043
  @returns via cbk or Promise
2043
2044
  {
2044
2045
  channels: [{
2046
+ [anchor_is_confirmed]: <Anchor Sweep Confirmed Bool>
2047
+ [anchor_is_pending]: <Anchor Sweep Pending Confirmation Bool>
2048
+ [anchor_spent_by]: <Anchor Sweep Transaction Id Hex String>
2049
+ [anchor_vout]: <Anchor Output Index Number>
2045
2050
  capacity: <Closed Channel Capacity Tokens Number>
2046
2051
  [close_balance_spent_by]: <Channel Balance Output Spent By Tx Id String>
2047
2052
  [close_balance_vout]: <Channel Balance Close Tx Output Index Number>
@@ -7437,6 +7442,7 @@ Make sure to provide a cert when using LND with its default self-signed cert
7437
7442
 
7438
7443
  {
7439
7444
  [cert]: <Base64 or Hex Serialized LND TLS Cert>
7445
+ [path]: <Path to Proto Files Directory String>
7440
7446
  [socket]: <Host:Port String>
7441
7447
  }
7442
7448
 
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "dependencies": {
10
10
  "bolt07": "1.9.4",
11
11
  "invoices": "3.0.0",
12
- "lightning": "10.14.4",
12
+ "lightning": "10.16.0",
13
13
  "macaroon": "3.0.4"
14
14
  },
15
15
  "description": "Interaction helper for your Lightning Network daemon",
@@ -24,11 +24,11 @@
24
24
  "bn.js": "5.2.1",
25
25
  "bs58check": "4.0.0",
26
26
  "ecpair": "2.1.0",
27
- "ln-docker-daemons": "6.0.20",
27
+ "ln-docker-daemons": "6.0.21",
28
28
  "p2tr": "2.0.0",
29
29
  "portfinder": "1.0.32",
30
30
  "psbt": "3.0.0",
31
- "rimraf": "5.0.7",
31
+ "rimraf": "6.0.1",
32
32
  "secp256k1": "5.0.0",
33
33
  "tiny-secp256k1": "2.2.3",
34
34
  "uuid": "10.0.0",
@@ -52,6 +52,7 @@
52
52
  "url": "https://github.com/alexbosworth/ln-service.git"
53
53
  },
54
54
  "scripts": {
55
+ "integration-test-0.18.2": "DOCKER_LND_VERSION=v0.18.2-beta npm run test",
55
56
  "integration-test-0.18.1": "DOCKER_LND_VERSION=v0.18.1-beta npm run test",
56
57
  "integration-test-0.18.0": "DOCKER_LND_VERSION=v0.18.0-beta npm run test",
57
58
  "integration-test-0.17.5": "DOCKER_LND_VERSION=v0.17.5-beta npm run test",
@@ -73,5 +74,5 @@
73
74
  "integration-test-0.14.4": "DOCKER_LND_VERSION=v0.14.4-beta npm run test",
74
75
  "test": "echo $DOCKER_LND_VERSION && node test/runner"
75
76
  },
76
- "version": "57.14.4"
77
+ "version": "57.16.0"
77
78
  }