diff --git a/frontend/mempool-frontend-config.sample.json b/frontend/mempool-frontend-config.sample.json index 478c3bc55..0715cb0bd 100644 --- a/frontend/mempool-frontend-config.sample.json +++ b/frontend/mempool-frontend-config.sample.json @@ -10,7 +10,10 @@ "NGINX_PROTOCOL": "http", "NGINX_HOSTNAME": "127.0.0.1", "NGINX_PORT": "80", - "MEMPOOL_BLOCKS_AMOUNT": 8, "BLOCK_WEIGHT_UNITS": 4000000, - "BASE_MODULE": "mempool" + "MEMPOOL_BLOCKS_AMOUNT": 8, + "BASE_MODULE": "mempool", + "MEMPOOL_WEBSITE_URL": "https://mempool.space", + "LIQUID_WEBSITE_URL": "https://liquid.network", + "BISQ_WEBSITE_URL": "https://bisq.markets" } diff --git a/frontend/src/app/components/bisq-master-page/bisq-master-page.component.html b/frontend/src/app/components/bisq-master-page/bisq-master-page.component.html index 388497039..777fa6680 100644 --- a/frontend/src/app/components/bisq-master-page/bisq-master-page.component.html +++ b/frontend/src/app/components/bisq-master-page/bisq-master-page.component.html @@ -15,13 +15,13 @@
- Mainnet - Signet - Testnet + Mainnet + Signet + Testnet - Liquid - Liquid Testnet + Liquid + Liquid Testnet
diff --git a/frontend/src/app/components/liquid-master-page/liquid-master-page.component.html b/frontend/src/app/components/liquid-master-page/liquid-master-page.component.html index 150a6d279..58bd9bd73 100644 --- a/frontend/src/app/components/liquid-master-page/liquid-master-page.component.html +++ b/frontend/src/app/components/liquid-master-page/liquid-master-page.component.html @@ -16,11 +16,11 @@
- Mainnet - Signet - Testnet + Mainnet + Signet + Testnet - Bisq + Bisq
diff --git a/frontend/src/app/components/master-page/master-page.component.html b/frontend/src/app/components/master-page/master-page.component.html index 056a76434..faa2c7ddd 100644 --- a/frontend/src/app/components/master-page/master-page.component.html +++ b/frontend/src/app/components/master-page/master-page.component.html @@ -20,11 +20,11 @@ - Bisq + Bisq - Liquid + Liquid - Liquid Testnet + Liquid Testnet diff --git a/frontend/src/app/services/state.service.ts b/frontend/src/app/services/state.service.ts index 172c082f6..8050e4286 100644 --- a/frontend/src/app/services/state.service.ts +++ b/frontend/src/app/services/state.service.ts @@ -33,6 +33,9 @@ export interface Env { MEMPOOL_BLOCKS_AMOUNT: number; GIT_COMMIT_HASH: string; PACKAGE_JSON_VERSION: string; + MEMPOOL_WEBSITE_URL: string; + LIQUID_WEBSITE_URL: string; + BISQ_WEBSITE_URL: string; } const defaultEnv: Env = { @@ -53,6 +56,9 @@ const defaultEnv: Env = { 'MEMPOOL_BLOCKS_AMOUNT': 8, 'GIT_COMMIT_HASH': '', 'PACKAGE_JSON_VERSION': '', + 'MEMPOOL_WEBSITE_URL': 'https://mempool.space', + 'LIQUID_WEBSITE_URL': 'https://liquid.network', + 'BISQ_WEBSITE_URL': 'https://bisq.markets', }; @Injectable({