Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ export class QuicklinkService {
{ search: 'parasite.wtf', url: `https://parasite.space/user/${user}` },
{ regex: /^(eu|au)?solo[46]?.ckpool\.org/, url: `https://$1solostats.ckpool.org/users/${user}` },
{ search: 'atlaspool.io', url: `https://atlaspool.io/dashboard.html?wallet=${user}` },
{ regex: /^(.+?)(?:-[a-z]{2})?\.kryptex\.network/, url: `https://pool.kryptex.com/$1/miner/stats/${user.replace(/^solo:/, '')}` },
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: should just be the btc pool url, osmu is bitcoin-only

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

agree

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lots of our users mine different sha-256 coins. Same for some other pools already present in this list.

Is there a reason to limit dashboard links just to bitcoin? Can we avoid hardcoding BTC there for convenience of those users? 🙏

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@0xf0xx0 @WantClue gentle ping on the question above — please let me know if this is possible, as lots of our users have asked about this.

Copy link
Contributor

@0xf0xx0 0xf0xx0 Mar 4, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

osmu is bitcoin-only, other sha256 coins aren't officially supported. preferably thatd include the dashboard quicklinks. thanks for the ping btw, github didn't notify me lmao

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should be changed to something like:
{
regex: /^(btc)(?:-[a-z]{2})?.kryptex.network/,
url: https://pool.kryptex.com/$1/miner/stats/${user.replace(/^solo:/, '')}
}

];

for (const pool of pools) {
Expand Down