ln-service 57.13.0 → 57.13.2

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,6 +1,6 @@
1
1
  # Versions
2
2
 
3
- ## 57.13.0
3
+ ## 57.13.2
4
4
 
5
5
  - `getWalletInfo`: Add support for LND 0.18.0
6
6
  - `subscribeToGraph`: Add support for `inbound_base_discount_mtokens` and
package/README.md CHANGED
@@ -7705,11 +7705,17 @@ Requires `offchain:write` permission
7705
7705
 
7706
7706
  `failures` are not returned on LND 0.13.4 and below
7707
7707
 
7708
+ `inbound_base_discount_mtokens` is not supported on LND 0.17.5 and below
7709
+
7710
+ `inbound_rate_discount` is not supported on LND 0.17.5 and below
7711
+
7708
7712
  {
7709
7713
  [base_fee_mtokens]: <Base Fee Millitokens Charged String>
7710
7714
  [base_fee_tokens]: <Base Fee Tokens Charged Number>
7711
7715
  [cltv_delta]: <HTLC CLTV Delta Number>
7712
7716
  [fee_rate]: <Fee Rate In Millitokens Per Million Number>
7717
+ [inbound_base_discount_mtokens]: <Inbound Fee Millitokens Reduction String>
7718
+ [inbound_rate_discount]: <Source Millitokens Per Million Discount Number>
7713
7719
  lnd: <Authenticated LND API Object>
7714
7720
  [max_htlc_mtokens]: <Maximum HTLC Millitokens to Forward String>
7715
7721
  [min_htlc_mtokens]: <Minimum HTLC Millitokens to Forward String>
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "url": "https://github.com/alexbosworth/ln-service/issues"
8
8
  },
9
9
  "dependencies": {
10
- "bolt07": "1.8.4",
10
+ "bolt07": "1.9.1",
11
11
  "invoices": "3.0.0",
12
12
  "lightning": "10.13.1",
13
13
  "macaroon": "3.0.4"
@@ -72,5 +72,5 @@
72
72
  "integration-test-0.14.4": "DOCKER_LND_VERSION=v0.14.4-beta npm run test",
73
73
  "test": "echo $DOCKER_LND_VERSION && node test/runner"
74
74
  },
75
- "version": "57.13.0"
75
+ "version": "57.13.2"
76
76
  }