lightning 10.25.0 → 10.25.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
|
@@ -47,6 +47,8 @@ export type ForceCloseChannelArgs = AuthenticatedLightningArgs<
|
|
|
47
47
|
export type CoopCloseChannelArgs = AuthenticatedLightningArgs<
|
|
48
48
|
ExpectedIdOfChannelToClose & {
|
|
49
49
|
is_force_close?: false;
|
|
50
|
+
/** Is Waiting For Pending Payments to Coop Close Bool */
|
|
51
|
+
is_graceful_close?: boolean;
|
|
50
52
|
/** Request Sending Local Channel Funds To Address String */
|
|
51
53
|
address?: string;
|
|
52
54
|
/** Fail Cooperative Close Above Fee Rate */
|
|
@@ -79,6 +81,8 @@ export type CloseChannelResult = {
|
|
|
79
81
|
* Requires `info:read`, `offchain:write`, `onchain:write`, `peers:write` permissions
|
|
80
82
|
*
|
|
81
83
|
* `max_tokens_per_vbyte` is not supported in LND 0.15.0 and below
|
|
84
|
+
*
|
|
85
|
+
* `is_graceful_close` is not supported in LND 0.17.5 and below
|
|
82
86
|
*/
|
|
83
87
|
export const closeChannel: AuthenticatedLightningMethod<
|
|
84
88
|
CloseChannelArgs,
|
package/package.json
CHANGED
|
@@ -7,27 +7,27 @@
|
|
|
7
7
|
"url": "https://github.com/alexbosworth/lightning/issues"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@grpc/grpc-js": "1.13.
|
|
11
|
-
"@grpc/proto-loader": "0.7.
|
|
12
|
-
"@types/node": "22.
|
|
10
|
+
"@grpc/grpc-js": "1.13.3",
|
|
11
|
+
"@grpc/proto-loader": "0.7.15",
|
|
12
|
+
"@types/node": "22.15.21",
|
|
13
13
|
"@types/request": "2.48.12",
|
|
14
|
-
"@types/ws": "8.18.
|
|
14
|
+
"@types/ws": "8.18.1",
|
|
15
15
|
"async": "3.2.6",
|
|
16
16
|
"asyncjs-util": "1.2.12",
|
|
17
17
|
"bitcoinjs-lib": "6.1.7",
|
|
18
|
-
"bn.js": "5.2.
|
|
18
|
+
"bn.js": "5.2.2",
|
|
19
19
|
"bolt07": "1.9.4",
|
|
20
20
|
"bolt09": "2.1.0",
|
|
21
21
|
"ecpair": "3.0.0",
|
|
22
|
-
"invoices": "
|
|
22
|
+
"invoices": "4.0.0",
|
|
23
23
|
"psbt": "4.0.0",
|
|
24
24
|
"tiny-secp256k1": "2.2.3",
|
|
25
|
-
"type-fest": "4.
|
|
25
|
+
"type-fest": "4.41.0"
|
|
26
26
|
},
|
|
27
27
|
"description": "Lightning Network client library",
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"tsd": "0.
|
|
30
|
-
"typescript": "5.8.
|
|
29
|
+
"tsd": "0.32.0",
|
|
30
|
+
"typescript": "5.8.3"
|
|
31
31
|
},
|
|
32
32
|
"engines": {
|
|
33
33
|
"node": ">=18"
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"directory": "test/typescript"
|
|
54
54
|
},
|
|
55
55
|
"types": "index.d.ts",
|
|
56
|
-
"version": "10.25.
|
|
56
|
+
"version": "10.25.1"
|
|
57
57
|
}
|