lightning 10.27.0 → 10.27.1

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,6 +1,6 @@
1
1
  # Versions
2
2
 
3
- ## 10.27.0
3
+ ## 10.27.1
4
4
 
5
5
  - `getPendingChannels`: Add support for `opening_funding_height`,
6
6
  `opening_waiting_blocks`
@@ -69,6 +69,10 @@ export type GetPendingChannelsResult = {
69
69
  transaction_weight?: number;
70
70
  /** Channel Commitment Transaction Type */
71
71
  type?: string;
72
+ /** Funding Seen At Best Block Height */
73
+ opening_funding_height?: number;
74
+ /** Open Activation Waiting Blocks Count */
75
+ opening_waiting_blocks?: number;
72
76
  }[];
73
77
  };
74
78
 
@@ -79,6 +83,18 @@ export type GetPendingChannelsResult = {
79
83
  channel may be opening, closing, or active.
80
84
  *
81
85
  * Requires `offchain:read` permission
86
+ *
87
+ * `is_private` is not supported in LND 0.14.5 or before
88
+ *
89
+ * `description` is not supported in LND 0.16.4 or before
90
+ *
91
+ * `blocks_until_expiry` is not supported in LND 0.16.4 or before
92
+ *
93
+ * `close_transaction` is not supported in LND 0.17.5 or before
94
+ *
95
+ * `opening_funding_height` is not supported in LND 0.19.3 or before
96
+ *
97
+ * `opening_waiting_blocks` is not supported in LND 0.19.3 or before
82
98
  */
83
99
  export const getPendingChannels: AuthenticatedLightningMethod<
84
100
  {lnd: AuthenticatedLnd},
package/package.json CHANGED
@@ -22,7 +22,7 @@
22
22
  "invoices": "4.0.0",
23
23
  "psbt": "4.0.0",
24
24
  "tiny-secp256k1": "2.2.4",
25
- "type-fest": "5.0.0"
25
+ "type-fest": "5.0.1"
26
26
  },
27
27
  "description": "Lightning Network client library",
28
28
  "devDependencies": {
@@ -53,5 +53,5 @@
53
53
  "directory": "test/typescript"
54
54
  },
55
55
  "types": "index.d.ts",
56
- "version": "10.27.0"
56
+ "version": "10.27.1"
57
57
  }