ln-service 53.21.0 → 53.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 CHANGED
@@ -1,5 +1,9 @@
1
1
  # Versions
2
2
 
3
+ ## 53.22.0
4
+
5
+ - `parsePaymentRequest`: Add support for parsing payment request metadata
6
+
3
7
  ## 53.21.0
4
8
 
5
9
  - `getLockedUtxos`: Add support for locked UTXO `output_script`, `tokens`
package/README.md CHANGED
@@ -9,7 +9,7 @@ through npm.
9
9
 
10
10
  Supported LND versions:
11
11
 
12
- - v0.15.0-beta
12
+ - v0.15.0-beta to v0.15.1-beta
13
13
  - v0.14.0-beta to v0.14.3-beta
14
14
  - v0.13.0-beta to v0.13.4-beta
15
15
  - v0.12.0-beta to v0.12.1-beta
@@ -3695,6 +3695,7 @@ Note: either description or description_hash will be returned
3695
3695
  }]
3696
3696
  id: <Payment Request Hash String>
3697
3697
  is_expired: <Invoice is Expired Bool>
3698
+ [metadata]: <Payment Metadata Hex String>
3698
3699
  [mtokens]: <Requested Milli-Tokens Value String> (can exceed Number limit)
3699
3700
  network: <Network Name String>
3700
3701
  [payment]: <Payment Identifier Hex Encoded String>
package/package.json CHANGED
@@ -10,8 +10,8 @@
10
10
  "bolt07": "1.8.2",
11
11
  "cors": "2.8.5",
12
12
  "express": "4.18.1",
13
- "invoices": "2.1.0",
14
- "lightning": "5.20.0",
13
+ "invoices": "2.2.0",
14
+ "lightning": "5.20.2",
15
15
  "macaroon": "3.0.4",
16
16
  "morgan": "1.10.0",
17
17
  "ws": "8.8.1"
@@ -28,7 +28,7 @@
28
28
  "bn.js": "5.2.1",
29
29
  "bs58check": "2.1.2",
30
30
  "ecpair": "2.0.1",
31
- "ln-docker-daemons": "2.3.5",
31
+ "ln-docker-daemons": "2.3.6",
32
32
  "p2tr": "1.3.1",
33
33
  "portfinder": "1.0.32",
34
34
  "psbt": "2.7.1",
@@ -56,6 +56,7 @@
56
56
  "url": "https://github.com/alexbosworth/ln-service.git"
57
57
  },
58
58
  "scripts": {
59
+ "integration-test-0.15.1": "DOCKER_LND_VERSION=v0.15.1-beta npm run test",
59
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",
@@ -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.21.0"
74
+ "version": "53.22.0"
74
75
  }