ln-service 54.2.4 → 54.2.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 CHANGED
@@ -1,5 +1,9 @@
1
1
  # Versions
2
2
 
3
+ ## 54.2.5
4
+
5
+ - `getWalletInfo`: Add support for LND 0.15.4
6
+
3
7
  ## 54.2.4
4
8
 
5
9
  - `getWalletInfo`: Add support for LND 0.15.3
package/README.md CHANGED
@@ -9,7 +9,7 @@ through npm.
9
9
 
10
10
  Supported LND versions:
11
11
 
12
- - v0.15.2-beta to v0.15.3-beta
12
+ - v0.15.2-beta to v0.15.4-beta
13
13
  - v0.14.4-beta
14
14
 
15
15
  For typescript-ready methods, check out https://github.com/alexbosworth/lightning#readme
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "cors": "2.8.5",
12
12
  "express": "4.18.2",
13
13
  "invoices": "2.2.0",
14
- "lightning": "6.2.5",
14
+ "lightning": "6.2.6",
15
15
  "macaroon": "3.0.4",
16
16
  "morgan": "1.10.0",
17
17
  "ws": "8.10.0"
@@ -28,7 +28,7 @@
28
28
  "bn.js": "5.2.1",
29
29
  "bs58check": "2.1.2",
30
30
  "ecpair": "2.1.0",
31
- "ln-docker-daemons": "3.1.3",
31
+ "ln-docker-daemons": "3.1.4",
32
32
  "p2tr": "1.3.2",
33
33
  "portfinder": "1.0.32",
34
34
  "psbt": "2.7.1",
@@ -56,10 +56,11 @@
56
56
  "url": "https://github.com/alexbosworth/ln-service.git"
57
57
  },
58
58
  "scripts": {
59
+ "integration-test-0.15.4": "DOCKER_LND_VERSION=v0.15.4-beta npm run test",
59
60
  "integration-test-0.15.3": "DOCKER_LND_VERSION=v0.15.3-beta npm run test",
60
61
  "integration-test-0.15.2": "DOCKER_LND_VERSION=v0.15.2-beta npm run test",
61
62
  "integration-test-0.14.4": "DOCKER_LND_VERSION=v0.14.4-beta npm run test",
62
63
  "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"
63
64
  },
64
- "version": "54.2.4"
65
+ "version": "54.2.5"
65
66
  }