mirror of
https://github.com/mempool/mempool.git
synced 2025-01-18 05:12:35 +01:00
parent
4c82e292be
commit
962c024ecb
@ -8,12 +8,12 @@
|
|||||||
"WEBSOCKET_REFRESH_RATE_MS": 2000
|
"WEBSOCKET_REFRESH_RATE_MS": 2000
|
||||||
},
|
},
|
||||||
"ELECTRS": {
|
"ELECTRS": {
|
||||||
"REST_API_URL": "http://localhost:50001",
|
"REST_API_URL": "http://127.0.0.1:3000",
|
||||||
"POLL_RATE_MS": 2000
|
"POLL_RATE_MS": 2000
|
||||||
},
|
},
|
||||||
"DATABASE": {
|
"DATABASE": {
|
||||||
"ENABLED": true,
|
"ENABLED": true,
|
||||||
"HOST": "localhost",
|
"HOST": "127.0.0.1",
|
||||||
"PORT": 3306,
|
"PORT": 3306,
|
||||||
"DATABASE": "mempool",
|
"DATABASE": "mempool",
|
||||||
"USERNAME": "mempool",
|
"USERNAME": "mempool",
|
||||||
@ -24,18 +24,18 @@
|
|||||||
"TX_PER_SECOND_SAMPLE_PERIOD": 150
|
"TX_PER_SECOND_SAMPLE_PERIOD": 150
|
||||||
},
|
},
|
||||||
"BISQ_BLOCKS": {
|
"BISQ_BLOCKS": {
|
||||||
"ENABLED": true,
|
"ENABLED": false,
|
||||||
"DATA_PATH": "/bisq/statsnode-data/btc_mainnet/db/json"
|
"DATA_PATH": "/bisq/statsnode-data/btc_mainnet/db/json"
|
||||||
},
|
},
|
||||||
"BISQ_MARKETS": {
|
"BISQ_MARKETS": {
|
||||||
"ENABLED": true,
|
"ENABLED": false,
|
||||||
"DATA_PATH": "/bisq/statsnode-data/btc_mainnet/db"
|
"DATA_PATH": "/bisq/statsnode-data/btc_mainnet/db"
|
||||||
},
|
},
|
||||||
"SPONSORS": {
|
"SPONSORS": {
|
||||||
"ENABLED": true,
|
"ENABLED": false,
|
||||||
"BTCPAY_URL": "",
|
"BTCPAY_URL": "",
|
||||||
"BTCPAY_AUTH": "",
|
"BTCPAY_AUTH": "",
|
||||||
"BTCPAY_WEBHOOK_URL": "",
|
"BTCPAY_WEBHOOK_URL": "",
|
||||||
"TWITTER_BEARER_AUTH": ""
|
"TWITTER_BEARER_AUTH": ""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
const configFile = require('../mempool-config.json');
|
const configFile = require('../mempool-config.json');
|
||||||
|
|
||||||
export interface IConfig {
|
interface IConfig {
|
||||||
MEMPOOL: {
|
MEMPOOL: {
|
||||||
NETWORK: 'mainnet' | 'testnet' | 'liquid';
|
NETWORK: 'mainnet' | 'testnet' | 'liquid';
|
||||||
HTTP_PORT: number;
|
HTTP_PORT: number;
|
||||||
@ -42,6 +42,48 @@ export interface IConfig {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const defaults: IConfig = {
|
||||||
|
'MEMPOOL': {
|
||||||
|
'NETWORK': 'mainnet',
|
||||||
|
'HTTP_PORT': 8999,
|
||||||
|
'MINED_BLOCKS_CACHE': 144,
|
||||||
|
'SPAWN_CLUSTER_PROCS': 0,
|
||||||
|
'API_URL_PREFIX': '/api/v1/',
|
||||||
|
'WEBSOCKET_REFRESH_RATE_MS': 2000
|
||||||
|
},
|
||||||
|
'ELECTRS': {
|
||||||
|
'REST_API_URL': 'http://127.0.0.1:3000',
|
||||||
|
'POLL_RATE_MS': 2000
|
||||||
|
},
|
||||||
|
'DATABASE': {
|
||||||
|
'ENABLED': true,
|
||||||
|
'HOST': 'localhost',
|
||||||
|
'PORT': 3306,
|
||||||
|
'DATABASE': 'mempool',
|
||||||
|
'USERNAME': 'mempool',
|
||||||
|
'PASSWORD': 'mempool'
|
||||||
|
},
|
||||||
|
'STATISTICS': {
|
||||||
|
'ENABLED': true,
|
||||||
|
'TX_PER_SECOND_SAMPLE_PERIOD': 150
|
||||||
|
},
|
||||||
|
'BISQ_BLOCKS': {
|
||||||
|
'ENABLED': false,
|
||||||
|
'DATA_PATH': '/bisq/statsnode-data/btc_mainnet/db/json'
|
||||||
|
},
|
||||||
|
'BISQ_MARKETS': {
|
||||||
|
'ENABLED': false,
|
||||||
|
'DATA_PATH': '/bisq/statsnode-data/btc_mainnet/db'
|
||||||
|
},
|
||||||
|
'SPONSORS': {
|
||||||
|
'ENABLED': false,
|
||||||
|
'BTCPAY_URL': '',
|
||||||
|
'BTCPAY_AUTH': '',
|
||||||
|
'BTCPAY_WEBHOOK_URL': '',
|
||||||
|
'TWITTER_BEARER_AUTH': ''
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
class Config implements IConfig {
|
class Config implements IConfig {
|
||||||
MEMPOOL: IConfig['MEMPOOL'];
|
MEMPOOL: IConfig['MEMPOOL'];
|
||||||
ELECTRS: IConfig['ELECTRS'];
|
ELECTRS: IConfig['ELECTRS'];
|
||||||
@ -52,13 +94,24 @@ class Config implements IConfig {
|
|||||||
SPONSORS: IConfig['SPONSORS'];
|
SPONSORS: IConfig['SPONSORS'];
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
this.MEMPOOL = configFile.MEMPOOL;
|
const configs = this.merge(configFile, defaults);
|
||||||
this.ELECTRS = configFile.ELECTRS;
|
this.MEMPOOL = configs.MEMPOOL;
|
||||||
this.DATABASE = configFile.DATABASE;
|
this.ELECTRS = configs.ELECTRS;
|
||||||
this.STATISTICS = configFile.STATISTICS;
|
this.DATABASE = configs.DATABASE;
|
||||||
this.BISQ_BLOCKS = configFile.BISQ_BLOCKS;
|
this.STATISTICS = configs.STATISTICS;
|
||||||
this.BISQ_MARKETS = configFile.BISQ_MARKETS;
|
this.BISQ_BLOCKS = configs.BISQ_BLOCKS;
|
||||||
this.SPONSORS = configFile.SPONSORS;
|
this.BISQ_MARKETS = configs.BISQ_MARKETS;
|
||||||
|
this.SPONSORS = configs.SPONSORS;
|
||||||
|
}
|
||||||
|
|
||||||
|
merge = (...objects: object[]): IConfig => {
|
||||||
|
// @ts-ignore
|
||||||
|
return objects.reduce((prev, next) => {
|
||||||
|
Object.keys(prev).forEach(key => {
|
||||||
|
next[key] = { ...next[key], ...prev[key] };
|
||||||
|
});
|
||||||
|
return next;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user