From 3c3cb6c0427e0353b0fd90daae87fada6f9fc9a0 Mon Sep 17 00:00:00 2001 From: WantClue Date: Thu, 25 Jul 2024 16:48:44 +0200 Subject: [PATCH] adding ckpool to quicklink --- .../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 52cc0182..12b03b7d 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 @@ -147,6 +147,9 @@ export class HomeComponent { } else if (info.stratumURL.includes('solo.d-central.tech')) { const address = info.stratumUser.split('.')[0] return `https://solo.d-central.tech/#/app/${address}`; + } else if (info.stratumURL.includes('solo.ckpool.org')) { + const address = info.stratumUser.split('.')[0] + return `https://solostats.ckpool.org/stats/${address}`; } else { return undefined; }