From 630d77db0c8635cc111461bc7dd47c37ca1330ef Mon Sep 17 00:00:00 2001 From: harrr1 <139184357+harrr1@users.noreply.github.com> Date: Wed, 10 Jul 2024 16:59:22 +0200 Subject: [PATCH] Add quick link to stats when mining on solo.d-central.tech --- .../axe-os/src/app/components/home/home.component.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main/http_server/axe-os/src/app/components/home/home.component.ts b/main/http_server/axe-os/src/app/components/home/home.component.ts index f5216f74..4ae9eb5e 100644 --- a/main/http_server/axe-os/src/app/components/home/home.component.ts +++ b/main/http_server/axe-os/src/app/components/home/home.component.ts @@ -144,6 +144,9 @@ export class HomeComponent { } else if (info.stratumURL.includes('ocean.xyz')) { const address = info.stratumUser.split('.')[0] return `https://ocean.xyz/stats/${address}`; + } else if (info.stratumURL.includes('solo.xd-central.tech')) { + const address = info.stratumUser.split('.')[0] + return `https://solo.d-central.tech/#/app/${address}`; } else { return undefined; }