ln-service 57.15.0 → 57.17.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,16 @@
1
1
  # Versions
2
2
 
3
+ ## 57.17.0
4
+
5
+ - `getFeeRates`: Add support for `inbound_base_discount_mtokens`,
6
+ 'inbound_rate_discount` for inbound fee policy discounts
7
+
8
+ ## 57.16.0
9
+
10
+ - `getClosedChannels`: Add support for anchor resolution status via new
11
+ attributes `anchor_is_confirmed`, `anchor_is_pending`, `anchor_spent_by`,
12
+ and `anchor_vout`
13
+
3
14
  ## 57.15.0
4
15
 
5
16
  - `authenticatedLndGrpc`, `unauthenticatedLndGrpc`: Add `path` to specify the
package/README.md CHANGED
@@ -9,7 +9,7 @@ through npm.
9
9
 
10
10
  Supported LND versions:
11
11
 
12
- - v0.18.0-beta to v0.18.1-beta
12
+ - v0.18.0-beta to v0.18.2-beta
13
13
  - v0.17.0-beta to v0.17.5-beta
14
14
  - v0.16.0-beta to v0.16.4-beta
15
15
  - v0.15.2-beta to v0.15.5-beta
@@ -2043,6 +2043,10 @@ Requires `offchain:read` permission
2043
2043
  @returns via cbk or Promise
2044
2044
  {
2045
2045
  channels: [{
2046
+ [anchor_is_confirmed]: <Anchor Sweep Confirmed Bool>
2047
+ [anchor_is_pending]: <Anchor Sweep Pending Confirmation Bool>
2048
+ [anchor_spent_by]: <Anchor Sweep Transaction Id Hex String>
2049
+ [anchor_vout]: <Anchor Output Index Number>
2046
2050
  capacity: <Closed Channel Capacity Tokens Number>
2047
2051
  [close_balance_spent_by]: <Channel Balance Output Spent By Tx Id String>
2048
2052
  [close_balance_vout]: <Channel Balance Close Tx Output Index Number>
@@ -2305,6 +2309,8 @@ Requires `offchain:read` permission
2305
2309
  base_fee: <Base Flat Fee Tokens Rounded Up Number>
2306
2310
  base_fee_mtokens: <Base Flat Fee Millitokens String>
2307
2311
  id: <Standard Format Channel Id String>
2312
+ inbound_base_discount_mtokens: <Source Based Base Fee Reduction String>
2313
+ inbound_rate_discount: <Source Based Per Million Rate Reduction Number>
2308
2314
  transaction_id: <Channel Funding Transaction Id Hex String>
2309
2315
  transaction_vout: <Funding Outpoint Output Index Number>
2310
2316
  }]
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "dependencies": {
10
10
  "bolt07": "1.9.4",
11
11
  "invoices": "3.0.0",
12
- "lightning": "10.15.1",
12
+ "lightning": "10.17.0",
13
13
  "macaroon": "3.0.4"
14
14
  },
15
15
  "description": "Interaction helper for your Lightning Network daemon",
@@ -74,5 +74,5 @@
74
74
  "integration-test-0.14.4": "DOCKER_LND_VERSION=v0.14.4-beta npm run test",
75
75
  "test": "echo $DOCKER_LND_VERSION && node test/runner"
76
76
  },
77
- "version": "57.15.0"
77
+ "version": "57.17.0"
78
78
  }