lightning 5.4.1 → 5.4.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
|
@@ -3751,6 +3751,9 @@ message PolicyUpdateRequest {
|
|
|
3751
3751
|
// goes up to 6 decimal places, so 1e-6.
|
|
3752
3752
|
double fee_rate = 4;
|
|
3753
3753
|
|
|
3754
|
+
// The effective fee rate in micro-satoshis (parts per million).
|
|
3755
|
+
uint32 fee_rate_ppm = 9;
|
|
3756
|
+
|
|
3754
3757
|
// The required timelock delta for HTLCs forwarded over the channel.
|
|
3755
3758
|
uint32 time_lock_delta = 5;
|
|
3756
3759
|
|
|
@@ -22,7 +22,7 @@ export type GetPeersResult = {
|
|
|
22
22
|
/** Is Syncing Graph Data */
|
|
23
23
|
is_sync_peer?: boolean;
|
|
24
24
|
/** Peer Last Reconnected At ISO 8601 Date */
|
|
25
|
-
|
|
25
|
+
last_reconnection?: string;
|
|
26
26
|
/** Ping Latency Milliseconds */
|
|
27
27
|
ping_time: number;
|
|
28
28
|
/** Node Identity Public Key */
|
|
@@ -31,7 +31,7 @@ const type = 'default';
|
|
|
31
31
|
}]
|
|
32
32
|
is_inbound: <Is Inbound Peer Bool>
|
|
33
33
|
[is_sync_peer]: <Is Syncing Graph Data Bool>
|
|
34
|
-
[
|
|
34
|
+
[last_reconnection]: <Peer Last Reconnected At ISO 8601 Date String>
|
|
35
35
|
ping_time: <Ping Latency Milliseconds Number>
|
|
36
36
|
public_key: <Node Identity Public Key String>
|
|
37
37
|
[reconnection_rate]: <Count of Reconnections Over Time Number>
|
|
@@ -49,7 +49,7 @@ const microPerMilli = 1e3;
|
|
|
49
49
|
}]
|
|
50
50
|
is_inbound: <Is Inbound Peer Bool>
|
|
51
51
|
[is_sync_peer]: <Is Syncing Graph Data Bool>
|
|
52
|
-
[
|
|
52
|
+
[last_reconnection]: <Peer Last Reconnected At ISO 8601 Date String>
|
|
53
53
|
ping_time: <Milliseconds Number>
|
|
54
54
|
public_key: <Public Key String>
|
|
55
55
|
[reconnection_rate]: <Count of Reconnections Over Time Number>
|
package/package.json
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"@grpc/grpc-js": "1.5.3",
|
|
11
11
|
"@grpc/proto-loader": "0.6.9",
|
|
12
12
|
"@types/express": "4.17.13",
|
|
13
|
-
"@types/node": "17.0.
|
|
13
|
+
"@types/node": "17.0.13",
|
|
14
14
|
"@types/request": "2.48.8",
|
|
15
15
|
"@types/ws": "8.2.2",
|
|
16
16
|
"async": "3.2.3",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"express": "4.17.2",
|
|
25
25
|
"invoices": "2.0.3",
|
|
26
26
|
"psbt": "1.1.11",
|
|
27
|
-
"type-fest": "2.
|
|
27
|
+
"type-fest": "2.11.0"
|
|
28
28
|
},
|
|
29
29
|
"description": "Lightning Network client library",
|
|
30
30
|
"devDependencies": {
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"directory": "test/typescript"
|
|
58
58
|
},
|
|
59
59
|
"types": "index.d.ts",
|
|
60
|
-
"version": "5.4.
|
|
60
|
+
"version": "5.4.2"
|
|
61
61
|
}
|