Import LN historical statistics (network wide + per node)

This commit is contained in:
nymkappa
2022-08-01 17:25:44 +02:00
parent 55966e601a
commit 4ea1e98547
7 changed files with 440 additions and 183 deletions

View File

@@ -31,6 +31,7 @@ interface IConfig {
LIGHTNING: {
ENABLED: boolean;
BACKEND: 'lnd' | 'cln' | 'ldk';
TOPOLOGY_FOLDER: string;
};
LND: {
TLS_CERT_PATH: string;
@@ -177,7 +178,8 @@ const defaults: IConfig = {
},
'LIGHTNING': {
'ENABLED': false,
'BACKEND': 'lnd'
'BACKEND': 'lnd',
'TOPOLOGY_FOLDER': '',
},
'LND': {
'TLS_CERT_PATH': '',