ln-service 57.20.1 → 57.21.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 +8 -0
- package/README.md +4 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Versions
|
|
2
2
|
|
|
3
|
+
## 57.21.0
|
|
4
|
+
|
|
5
|
+
- `fundPsbt`: Add support for `change_format` to specify change address type
|
|
6
|
+
|
|
7
|
+
## 57.20.2
|
|
8
|
+
|
|
9
|
+
- Add support for LND 0.18.3
|
|
10
|
+
|
|
3
11
|
## 57.20.1
|
|
4
12
|
|
|
5
13
|
- `payViaPaymentRequest`, `subscribeToPayViaRequest`: Add `index` to response
|
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.
|
|
12
|
+
- v0.18.0-beta to v0.18.3-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
|
|
@@ -1400,6 +1400,8 @@ If there are no inputs passed, internal UTXOs will be selected and locked
|
|
|
1400
1400
|
|
|
1401
1401
|
`utxo_selection` methods: 'largest', 'random'
|
|
1402
1402
|
|
|
1403
|
+
`change_format` options: `p2tr` (only one change type is supported)
|
|
1404
|
+
|
|
1403
1405
|
Requires `onchain:write` permission
|
|
1404
1406
|
|
|
1405
1407
|
Requires LND built with `walletrpc` tag
|
|
@@ -1411,6 +1413,7 @@ Specifying 0 for `min_confirmations` is not supported in LND 0.13.0 and below
|
|
|
1411
1413
|
`utxo_selection` is not supported in LND 0.17.5 and below
|
|
1412
1414
|
|
|
1413
1415
|
{
|
|
1416
|
+
[change_format]: <Change Address Address Format String>
|
|
1414
1417
|
[fee_tokens_per_vbyte]: <Chain Fee Tokens Per Virtual Byte Number>
|
|
1415
1418
|
[inputs]: [{
|
|
1416
1419
|
transaction_id: <Unspent Transaction Id Hex String>
|
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.
|
|
12
|
+
"lightning": "10.21.0",
|
|
13
13
|
"macaroon": "3.0.4"
|
|
14
14
|
},
|
|
15
15
|
"description": "Interaction helper for your Lightning Network daemon",
|
|
@@ -74,5 +74,5 @@
|
|
|
74
74
|
"integration-test-0.14.4": "DOCKER_LND_VERSION=v0.14.4-beta npm run test",
|
|
75
75
|
"test": "echo $DOCKER_LND_VERSION && node test/runner"
|
|
76
76
|
},
|
|
77
|
-
"version": "57.
|
|
77
|
+
"version": "57.21.0"
|
|
78
78
|
}
|