ln-accounting 9.0.0 → 10.0.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,6 +1,12 @@
1
1
  # Versions
2
2
 
3
- ## Version 9.0.0
3
+ ## Version 10.0.0
4
+
5
+ ### Breaking Changes
6
+
7
+ - Node.js 22 or higher is now required
8
+
9
+ ## Version 9.0.1
4
10
 
5
11
  ### Breaking Changes
6
12
 
package/package.json CHANGED
@@ -11,13 +11,13 @@
11
11
  "async": "3.2.6",
12
12
  "asyncjs-util": "1.2.12",
13
13
  "bitcoinjs-lib": "6.1.7",
14
- "goldengate": "15.0.0",
14
+ "goldengate": "16.0.0",
15
15
  "hot-formula-parser": "4.0.0",
16
- "ln-service": "58.0.2"
16
+ "ln-service": "59.0.0"
17
17
  },
18
18
  "description": "lnd accounting reports",
19
19
  "engines": {
20
- "node": ">=20"
20
+ "node": ">=22"
21
21
  },
22
22
  "keywords": [
23
23
  "accounting",
@@ -33,5 +33,5 @@
33
33
  "scripts": {
34
34
  "test": "npx nyc@17.1.0 node --experimental-test-coverage --test"
35
35
  },
36
- "version": "9.0.0"
36
+ "version": "10.0.0"
37
37
  }
@@ -52,7 +52,6 @@ const paymentsPagingLimit = 100;
52
52
  fee_mtokens: <Route Fee Millitokens String>
53
53
  hops: [{
54
54
  channel: <Standard Format Channel Id String>
55
- channel_capacity: <Channel Capacity Tokens Number>
56
55
  fee: <Fee Number>
57
56
  fee_mtokens: <Fee Millitokens String>
58
57
  forward: <Forward Tokens Number>
@@ -128,7 +128,6 @@ const tests = [
128
128
  hops: [
129
129
  {
130
130
  channel: '0x0x1',
131
- channel_capacity: 1,
132
131
  fee: 1,
133
132
  fee_mtokens: '1000',
134
133
  forward: 1,
@@ -138,7 +137,6 @@ const tests = [
138
137
  },
139
138
  {
140
139
  channel: '0x0x1',
141
- channel_capacity: 1,
142
140
  fee: 1,
143
141
  fee_mtokens: '1000',
144
142
  forward: 1,