ln-service 57.20.2 → 57.22.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 +5 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Versions
|
|
2
2
|
|
|
3
|
+
## 57.22.0
|
|
4
|
+
|
|
5
|
+
- `createFundedPsbt`: Add support for `change_format` for change address type
|
|
6
|
+
|
|
7
|
+
## 57.21.0
|
|
8
|
+
|
|
9
|
+
- `fundPsbt`: Add support for `change_format` to specify change address type
|
|
10
|
+
|
|
3
11
|
## 57.20.2
|
|
4
12
|
|
|
5
13
|
- Add support for LND 0.18.3
|
package/README.md
CHANGED
|
@@ -698,6 +698,8 @@ Create an unsigned funded PSBT given inputs or outputs
|
|
|
698
698
|
|
|
699
699
|
When specifying local inputs, they must be locked before using
|
|
700
700
|
|
|
701
|
+
`change_format` options: `p2tr` (only one change type is supported)
|
|
702
|
+
|
|
701
703
|
`utxo_selection` methods: 'largest', 'random'
|
|
702
704
|
|
|
703
705
|
Requires `onchain:write` permission
|
|
@@ -1400,6 +1402,8 @@ If there are no inputs passed, internal UTXOs will be selected and locked
|
|
|
1400
1402
|
|
|
1401
1403
|
`utxo_selection` methods: 'largest', 'random'
|
|
1402
1404
|
|
|
1405
|
+
`change_format` options: `p2tr` (only one change type is supported)
|
|
1406
|
+
|
|
1403
1407
|
Requires `onchain:write` permission
|
|
1404
1408
|
|
|
1405
1409
|
Requires LND built with `walletrpc` tag
|
|
@@ -1411,6 +1415,7 @@ Specifying 0 for `min_confirmations` is not supported in LND 0.13.0 and below
|
|
|
1411
1415
|
`utxo_selection` is not supported in LND 0.17.5 and below
|
|
1412
1416
|
|
|
1413
1417
|
{
|
|
1418
|
+
[change_format]: <Change Address Address Format String>
|
|
1414
1419
|
[fee_tokens_per_vbyte]: <Chain Fee Tokens Per Virtual Byte Number>
|
|
1415
1420
|
[inputs]: [{
|
|
1416
1421
|
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.22.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.22.0"
|
|
78
78
|
}
|