lightning 6.2.5 → 6.2.6

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
+ ## 6.2.6
4
+
5
+ - `getWalletInfo`: Add support for LND 0.15.4
6
+
3
7
  ## 6.2.5
4
8
 
5
9
  - Fix errors with LND API changes to HTLC events
@@ -32,6 +32,7 @@
32
32
  "7f34774529fa0964d47fc418d4d2965435cbfdc0": "0.11.1-beta",
33
33
  "86d3dec7b939b21bb10f2cd1ff56970c392a1c69": "0.13.2-beta",
34
34
  "86114c575c2dff9dff1e1bb4df961c64aea9fc1c": "0.10.4-beta",
35
+ "96fe51e2e5c2ee0c97909499e0e96a3d3755757e": "0.15.4-beta",
35
36
  "aff2ed3a6a118d664049835c325a5b69e977172f": "0.15.2-beta",
36
37
  "b4e7131bdb47531ad2f00ce345ddcdb58935bba5": "0.15.3-beta",
37
38
  "bd0c46b4fcb027af1915bd67a3da70e8ca5c6efe": "0.14.3-beta",
@@ -17,6 +17,6 @@ export type SubscribeToPaymentsPaymentEvent =
17
17
  *
18
18
  * Requires `offchain:read` permission
19
19
  *
20
- * Note: Method not supported on LND 0.15.3 and below
20
+ * Note: Method not supported on LND 0.15.4 and below
21
21
  */
22
22
  export const subscribeToPayments: AuthenticatedLightningSubscription<SubscribeToPaymentsArgs>;
@@ -13,7 +13,7 @@ const type = 'router';
13
13
 
14
14
  Requires `offchain:read` permission
15
15
 
16
- Note: Method not supported on LND 0.15.3 and below
16
+ Note: Method not supported on LND 0.15.4 and below
17
17
 
18
18
  {
19
19
  lnd: <Authenticated LND API Object>
@@ -50,8 +50,8 @@ export type OpenChannelResult = {
50
50
  *
51
51
  * External funding requires LND compiled with `walletrpc` build tag
52
52
  *
53
- * `base_fee_mtokens` is not supported on LND 0.15.3 and below
54
- * `fee_rate` is not supported on LND 0.15.3 and below
53
+ * `base_fee_mtokens` is not supported on LND 0.15.4 and below
54
+ * `fee_rate` is not supported on LND 0.15.4 and below
55
55
  */
56
56
  export const openChannel: AuthenticatedLightningMethod<
57
57
  OpenChannelArgs,
@@ -20,8 +20,8 @@ const type = 'default';
20
20
 
21
21
  External funding requires LND compiled with `walletrpc` build tag
22
22
 
23
- `base_fee_mtokens` is not supported on LND 0.15.3 and below
24
- `fee_rate` is not supported on LND 0.15.3 and below
23
+ `base_fee_mtokens` is not supported on LND 0.15.4 and below
24
+ `fee_rate` is not supported on LND 0.15.4 and below
25
25
 
26
26
  {
27
27
  [base_fee_mtokens]: <Routing Base Fee Millitokens Charged String>
@@ -56,8 +56,8 @@ channel that was not funded.
56
56
  `--protocol.option-scid-alias` and `--protocol.zero-conf` set on both sides
57
57
  as well as a channel open request listener to accept the trusted funding.
58
58
 
59
- * `base_fee_mtokens` is not supported on LND 0.15.3 and below
60
- * `fee_rate` is not supported on LND 0.15.3 and below
59
+ * `base_fee_mtokens` is not supported on LND 0.15.4 and below
60
+ * `fee_rate` is not supported on LND 0.15.4 and below
61
61
  */
62
62
  export const openChannels: AuthenticatedLightningMethod<
63
63
  OpenChannelsArgs,
@@ -37,8 +37,8 @@ const type = 'default';
37
37
  `--protocol.option-scid-alias` and `--protocol.zero-conf` set on both sides
38
38
  as well as a channel open request listener to accept the trusted funding.
39
39
 
40
- `base_fee_mtokens` is not supported on LND 0.15.3 and below
41
- `fee_rate` is not supported on LND 0.15.3 and below
40
+ `base_fee_mtokens` is not supported on LND 0.15.4 and below
41
+ `fee_rate` is not supported on LND 0.15.4 and below
42
42
 
43
43
  {
44
44
  channels: [{
package/package.json CHANGED
@@ -10,7 +10,7 @@
10
10
  "@grpc/grpc-js": "1.7.3",
11
11
  "@grpc/proto-loader": "0.7.3",
12
12
  "@types/express": "4.17.14",
13
- "@types/node": "18.11.7",
13
+ "@types/node": "18.11.9",
14
14
  "@types/request": "2.48.8",
15
15
  "@types/ws": "8.5.3",
16
16
  "async": "3.2.4",
@@ -59,5 +59,5 @@
59
59
  "directory": "test/typescript"
60
60
  },
61
61
  "types": "index.d.ts",
62
- "version": "6.2.5"
62
+ "version": "6.2.6"
63
63
  }