ln-service 53.17.2 → 53.17.5
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 +1 -1
- package/README.md +2 -1
- package/package.json +10 -9
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -9,6 +9,7 @@ through npm.
|
|
|
9
9
|
|
|
10
10
|
Supported LND versions:
|
|
11
11
|
|
|
12
|
+
- v0.15.0-beta
|
|
12
13
|
- v0.14.0-beta to v0.14.3-beta
|
|
13
14
|
- v0.13.0-beta to v0.13.4-beta
|
|
14
15
|
- v0.12.0-beta to v0.12.1-beta
|
|
@@ -1626,7 +1627,7 @@ Requires `offchain:read` permission
|
|
|
1626
1627
|
is_private: <Channel Is Private Bool>
|
|
1627
1628
|
local_balance: <Local Balance Tokens Number>
|
|
1628
1629
|
[local_csv]: <Local CSV Blocks Delay Number>
|
|
1629
|
-
[local_dust]: <
|
|
1630
|
+
[local_dust]: <Local Non-Enforceable Amount Tokens Number>
|
|
1630
1631
|
[local_given]: <Local Initially Pushed Tokens Number>
|
|
1631
1632
|
[local_max_htlcs]: <Local Maximum Attached HTLCs Number>
|
|
1632
1633
|
[local_max_pending_mtokens]: <Local Maximum Pending Millitokens String>
|
package/package.json
CHANGED
|
@@ -10,28 +10,28 @@
|
|
|
10
10
|
"bolt07": "1.8.2",
|
|
11
11
|
"cors": "2.8.5",
|
|
12
12
|
"express": "4.18.1",
|
|
13
|
-
"invoices": "2.0
|
|
14
|
-
"lightning": "5.16.
|
|
13
|
+
"invoices": "2.1.0",
|
|
14
|
+
"lightning": "5.16.6",
|
|
15
15
|
"macaroon": "3.0.4",
|
|
16
16
|
"morgan": "1.10.0",
|
|
17
|
-
"ws": "8.
|
|
17
|
+
"ws": "8.8.1"
|
|
18
18
|
},
|
|
19
19
|
"description": "Interaction helper for your Lightning Network daemon",
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@alexbosworth/tap": "15.0.11",
|
|
22
22
|
"@alexbosworth/node-fetch": "2.6.2",
|
|
23
|
-
"async": "3.2.
|
|
24
|
-
"asyncjs-util": "1.2.
|
|
23
|
+
"async": "3.2.4",
|
|
24
|
+
"asyncjs-util": "1.2.10",
|
|
25
25
|
"bip32": "3.0.1",
|
|
26
26
|
"bip66": "1.1.5",
|
|
27
|
-
"bitcoinjs-lib": "6.0.
|
|
27
|
+
"bitcoinjs-lib": "6.0.2",
|
|
28
28
|
"bn.js": "5.2.1",
|
|
29
29
|
"bs58check": "2.1.2",
|
|
30
30
|
"ecpair": "2.0.1",
|
|
31
|
-
"ln-docker-daemons": "2.2
|
|
31
|
+
"ln-docker-daemons": "2.3.2",
|
|
32
32
|
"p2tr": "1.3.1",
|
|
33
33
|
"portfinder": "1.0.28",
|
|
34
|
-
"psbt": "2.
|
|
34
|
+
"psbt": "2.7.1",
|
|
35
35
|
"rimraf": "3.0.2",
|
|
36
36
|
"secp256k1": "4.0.3",
|
|
37
37
|
"tiny-secp256k1": "2.2.1",
|
|
@@ -57,6 +57,7 @@
|
|
|
57
57
|
},
|
|
58
58
|
"scripts": {
|
|
59
59
|
"integration-test-daily-lnd-build": "DOCKER_LND_VERSION=daily-testing-only npm run test",
|
|
60
|
+
"integration-test-0.15.0": "DOCKER_LND_VERSION=v0.15.0-beta npm run test",
|
|
60
61
|
"integration-test-0.14.3": "DOCKER_LND_VERSION=v0.14.3-beta npm run test",
|
|
61
62
|
"integration-test-0.14.2": "DOCKER_LND_VERSION=v0.14.2-beta npm run test",
|
|
62
63
|
"integration-test-0.14.1": "DOCKER_LND_VERSION=v0.14.1-beta npm run test",
|
|
@@ -70,5 +71,5 @@
|
|
|
70
71
|
"integration-test-0.12.0": "DOCKER_LND_VERSION=v0.12.0-beta npm run test",
|
|
71
72
|
"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
73
|
},
|
|
73
|
-
"version": "53.17.
|
|
74
|
+
"version": "53.17.5"
|
|
74
75
|
}
|