From 32af9420dc5c5bac7d578fc299ae9ca69f417f7b Mon Sep 17 00:00:00 2001 From: wiz Date: Sun, 21 Feb 2021 03:41:52 +0900 Subject: [PATCH] Update production frontend/backend config to support signet --- production/mempool-config.signet.json | 31 +++++++++++++++++++++++++ production/mempool-frontend-config.json | 1 + 2 files changed, 32 insertions(+) create mode 100644 production/mempool-config.signet.json diff --git a/production/mempool-config.signet.json b/production/mempool-config.signet.json new file mode 100644 index 000000000..5649b1913 --- /dev/null +++ b/production/mempool-config.signet.json @@ -0,0 +1,31 @@ +{ + "MEMPOOL": { + "NETWORK": "signet", + "BACKEND": "esplora", + "HTTP_PORT": 8995, + "MINED_BLOCKS_CACHE": 144, + "SPAWN_CLUSTER_PROCS": 0, + "API_URL_PREFIX": "/api/v1/", + "POLL_RATE_MS": 2000 + }, + "CORE_RPC": { + "PORT": 38332, + "USERNAME": "foo", + "PASSWORD": "bar" + }, + "ESPLORA": { + "REST_API_URL": "http://127.0.0.1:2003" + }, + "DATABASE": { + "ENABLED": true, + "HOST": "127.0.0.1", + "PORT": 3306, + "USERNAME": "smempool", + "PASSWORD": "smempool", + "DATABASE": "smempool" + }, + "STATISTICS": { + "ENABLED": true, + "TX_PER_SECOND_SAMPLE_PERIOD": 150 + } +} diff --git a/production/mempool-frontend-config.json b/production/mempool-frontend-config.json index a6234110b..00f625b10 100644 --- a/production/mempool-frontend-config.json +++ b/production/mempool-frontend-config.json @@ -3,6 +3,7 @@ "LIQUID_ENABLED": true, "BISQ_ENABLED": true, "BISQ_SEPARATE_BACKEND": true, + "SIGNET_ENABLED": true, "ITEMS_PER_PAGE": 25, "KEEP_BLOCKS_AMOUNT": 8, "NGINX_PROTOCOL": "http",