ln-service 53.14.1 → 53.15.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 +7 -0
- package/README.md +27 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Versions
|
|
2
2
|
|
|
3
|
+
## 53.15.0
|
|
4
|
+
|
|
5
|
+
- `getRouteToDestination`, `isDestinationPayable`, `pay`,
|
|
6
|
+
`payViaPaymentDetails`, `payViaPaymentRequest`, `probeForRoute`,
|
|
7
|
+
`subscribeToPayViaDetails`, `subscribeToPayViaRequest`,
|
|
8
|
+
`subscribeToProbeForRoute` - add support for pathfinding `confidence`
|
|
9
|
+
|
|
3
10
|
## 53.14.1
|
|
4
11
|
|
|
5
12
|
- `signTransaction`: Fix multi-input signing for upcoming Taproot API changes
|
package/README.md
CHANGED
|
@@ -2931,8 +2931,11 @@ Call this iteratively after failed route attempts to get new routes
|
|
|
2931
2931
|
|
|
2932
2932
|
Requires `info:read` permission
|
|
2933
2933
|
|
|
2934
|
+
Preferred `confidence` is not supported on LND 0.14.3 and below
|
|
2935
|
+
|
|
2934
2936
|
{
|
|
2935
2937
|
[cltv_delta]: <Final CLTV Delta Number>
|
|
2938
|
+
[confidence]: <Preferred Route Confidence Number Out of One Million Number>
|
|
2936
2939
|
destination: <Final Send Destination Hex Encoded Public Key String>
|
|
2937
2940
|
[features]: [{
|
|
2938
2941
|
bit: <Feature Bit Number>
|
|
@@ -3331,8 +3334,11 @@ Determine if a payment destination is actually payable by probing it
|
|
|
3331
3334
|
|
|
3332
3335
|
Requires `offchain:write` permission
|
|
3333
3336
|
|
|
3337
|
+
Preferred `confidence` is not supported on LND 0.14.3 and below
|
|
3338
|
+
|
|
3334
3339
|
{
|
|
3335
3340
|
[cltv_delta]: <Final CLTV Delta Number>
|
|
3341
|
+
[confidence]: <Preferred Route Confidence Number Out of One Million Number>
|
|
3336
3342
|
destination: <Pay to Node with Public Key Hex String>
|
|
3337
3343
|
[incoming_peer]: <Pay Through Specific Final Hop Public Key Hex String>
|
|
3338
3344
|
lnd: <Authenticated LND API Object>
|
|
@@ -3612,7 +3618,10 @@ Requires `offchain:write` permission
|
|
|
3612
3618
|
|
|
3613
3619
|
`max_path_mtokens` is not supported in LND 0.12.0 or below
|
|
3614
3620
|
|
|
3621
|
+
Preferred `confidence` is not supported on LND 0.14.3 and below
|
|
3622
|
+
|
|
3615
3623
|
{
|
|
3624
|
+
[confidence]: <Preferred Route Confidence Number Out of One Million Number>
|
|
3616
3625
|
[incoming_peer]: <Pay Through Specific Final Hop Public Key Hex String>
|
|
3617
3626
|
lnd: <Authenticated LND API Object>
|
|
3618
3627
|
[max_fee]: <Maximum Additional Fee Tokens To Pay Number>
|
|
@@ -3699,8 +3708,11 @@ Requires `offchain:write` permission
|
|
|
3699
3708
|
|
|
3700
3709
|
`max_path_mtokens` is not supported in LND 0.12.0 or below
|
|
3701
3710
|
|
|
3711
|
+
Preferred `confidence` is not supported on LND 0.14.3 and below
|
|
3712
|
+
|
|
3702
3713
|
{
|
|
3703
3714
|
[cltv_delta]: <Final CLTV Delta Number>
|
|
3715
|
+
[confidence]: <Preferred Route Confidence Number Out of One Million Number>
|
|
3704
3716
|
destination: <Destination Public Key String>
|
|
3705
3717
|
[features]: [{
|
|
3706
3718
|
bit: <Feature Bit Number>
|
|
@@ -3786,7 +3798,10 @@ Requires `offchain:write` permission
|
|
|
3786
3798
|
|
|
3787
3799
|
`max_path_mtokens` is not supported in LND 0.12.0 or below
|
|
3788
3800
|
|
|
3801
|
+
Preferred `confidence` is not supported on LND 0.14.3 and below
|
|
3802
|
+
|
|
3789
3803
|
{
|
|
3804
|
+
[confidence]: <Preferred Route Confidence Number Out of One Million Number>
|
|
3790
3805
|
[incoming_peer]: <Pay Through Specific Final Hop Public Key Hex String>
|
|
3791
3806
|
lnd: <Authenticated LND API Object>
|
|
3792
3807
|
[max_fee]: <Maximum Fee Tokens To Pay Number>
|
|
@@ -3988,8 +4003,11 @@ If `total_mtokens` are specified, a `payment` nonce is required.
|
|
|
3988
4003
|
|
|
3989
4004
|
Requires `offchain:write` permission
|
|
3990
4005
|
|
|
4006
|
+
Preferred `confidence` is not supported on LND 0.14.3 and below
|
|
4007
|
+
|
|
3991
4008
|
{
|
|
3992
4009
|
[cltv_delta]: <Final CLTV Delta Number>
|
|
4010
|
+
[confidence]: <Preferred Route Confidence Number Out of One Million Number>
|
|
3993
4011
|
destination: <Destination Public Key Hex String>
|
|
3994
4012
|
[features]: [{
|
|
3995
4013
|
bit: <Feature Bit Number>
|
|
@@ -5573,8 +5591,11 @@ Requires `offchain:write` permission
|
|
|
5573
5591
|
|
|
5574
5592
|
`max_path_mtokens` is not supported in LND 0.12.0 or below
|
|
5575
5593
|
|
|
5594
|
+
Preferred `confidence` is not supported on LND 0.14.3 and below
|
|
5595
|
+
|
|
5576
5596
|
{
|
|
5577
5597
|
[cltv_delta]: <Final CLTV Delta Number>
|
|
5598
|
+
[confidence]: <Preferred Route Confidence Number Out of One Million Number>
|
|
5578
5599
|
destination: <Destination Public Key String>
|
|
5579
5600
|
[features]: [{
|
|
5580
5601
|
bit: <Feature Bit Number>
|
|
@@ -5736,7 +5757,10 @@ Requires `offchain:write` permission
|
|
|
5736
5757
|
|
|
5737
5758
|
`max_path_mtokens` is not supported in LND 0.12.0 or below
|
|
5738
5759
|
|
|
5760
|
+
Preferred `confidence` is not supported on LND 0.14.3 and below
|
|
5761
|
+
|
|
5739
5762
|
{
|
|
5763
|
+
[confidence]: <Preferred Route Confidence Number Out of One Million Number>
|
|
5740
5764
|
[incoming_peer]: <Pay Through Specific Final Hop Public Key Hex String>
|
|
5741
5765
|
lnd: <Authenticated LND API Object>
|
|
5742
5766
|
[max_fee]: <Maximum Fee Tokens To Pay Number>
|
|
@@ -6144,8 +6168,11 @@ Subscribe to a probe attempt
|
|
|
6144
6168
|
|
|
6145
6169
|
Requires `offchain:write` permission
|
|
6146
6170
|
|
|
6171
|
+
Preferred `confidence` is not supported on LND 0.14.3 and below
|
|
6172
|
+
|
|
6147
6173
|
{
|
|
6148
6174
|
[cltv_delta]: <Final CLTV Delta Number>
|
|
6175
|
+
[confidence]: <Preferred Route Confidence Number Out of One Million Number>
|
|
6149
6176
|
destination: <Destination Public Key Hex String>
|
|
6150
6177
|
[features]: [{
|
|
6151
6178
|
bit: <Feature Bit Number>
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"cors": "2.8.5",
|
|
12
12
|
"express": "4.17.3",
|
|
13
13
|
"invoices": "2.0.6",
|
|
14
|
-
"lightning": "5.
|
|
14
|
+
"lightning": "5.14.0",
|
|
15
15
|
"macaroon": "3.0.4",
|
|
16
16
|
"morgan": "1.10.0",
|
|
17
17
|
"ws": "8.5.0"
|
|
@@ -70,5 +70,5 @@
|
|
|
70
70
|
"integration-test-0.12.0": "DOCKER_LND_VERSION=v0.12.0-beta npm run test",
|
|
71
71
|
"test": "echo $DOCKER_LND_VERSION && tap -j 2 --branches=1 --functions=1 --lines=1 --statements=1 -t 200 test/autopilotrpc-integration/*.js test/chainrpc-integration/*.js test/integration/*.js test/invoicesrpc-integration/*.js test/peersrpc-integration/*.js test/routerrpc-integration/*.js test/signerrpc-integration/*.js test/tower_clientrpc-integration/*.js test/tower_serverrpc-integration/*.js test/walletrpc-integration/*.js"
|
|
72
72
|
},
|
|
73
|
-
"version": "53.
|
|
73
|
+
"version": "53.15.0"
|
|
74
74
|
}
|