Skip to content

Add pool.kryptex.com dashboard link for Kryptex Pool users#1577

Open
maxmalysh wants to merge 1 commit intobitaxeorg:masterfrom
maxmalysh:add-kryptex-quicklink
Open

Add pool.kryptex.com dashboard link for Kryptex Pool users#1577
maxmalysh wants to merge 1 commit intobitaxeorg:masterfrom
maxmalysh:add-kryptex-quicklink

Conversation

@maxmalysh
Copy link

@maxmalysh maxmalysh commented Feb 24, 2026

Summary

Adds quicklink support for Kryptex mining pool:
https://pool.kryptex.com

Uses the existing regex matching to extract the coin name from stratum URLs and map them to pool.kryptex.com/{coin}/miner/stats/{user}:

Stratum URL User Dashboard link
dgb.kryptex.network solo:D6kGPgxW3pQ62VRYM5TVFDZKNGdY78upMV.bitaxe601 https://pool.kryptex.com/dgb/miner/stats/D6kGPgxW3pQ62VRYM5TVFDZKNGdY78upMV
xec-hk.kryptex.network solo:ecash:qrddnyj76pwl44h59ythlfe3z2k5mv64gcuycrhytd https://pool.kryptex.com/xec/miner/stats/ecash:qrddnyj76pwl44h59ythlfe3z2k5mv64gcuycrhytd
fb-hk.kryptex.network 15XeRQ6vTH65xH5EjnFXZQrWPf85Cq79ss https://pool.kryptex.com/fb/miner/stats/15XeRQ6vTH65xH5EjnFXZQrWPf85Cq79ss
quai-sha256-eu.kryptex.network 0x0064945e2e65f44b2f976abb643e4a95df4e51a0 https://pool.kryptex.com/quai-sha256/miner/stats/0x0064945e2e65f44b2f976abb643e4a95df4e51a0
bch-us.kryptex.network 1JyTjBt5KSBPPGEBsoY3BCZJfNC7NvHpXZ https://pool.kryptex.com/bch/miner/stats/1JyTjBt5KSBPPGEBsoY3BCZJfNC7NvHpXZ

Examples

getQuickLink('dgb.kryptex.network', 'solo:D6kGPgxW3pQ62VRYM5TVFDZKNGdY78upMV.bitaxe601')
    => https://pool.kryptex.com/dgb/miner/stats/D6kGPgxW3pQ62VRYM5TVFDZKNGdY78upMV

getQuickLink('xec-hk.kryptex.network', 'solo:ecash:qrddnyj76pwl44h59ythlfe3z2k5mv64gcuycrhytd')
    => https://pool.kryptex.com/xec/miner/stats/ecash:qrddnyj76pwl44h59ythlfe3z2k5mv64gcuycrhytd

getQuickLink('fb-hk.kryptex.network', '15XeRQ6vTH65xH5EjnFXZQrWPf85Cq79ss')
   => https://pool.kryptex.com/fb/miner/stats/15XeRQ6vTH65xH5EjnFXZQrWPf85Cq79ss

getQuickLink('quai-sha256-eu.kryptex.network', '0x0064945e2e65f44b2f976abb643e4a95df4e51a0')
   => https://pool.kryptex.com/quai-sha256/miner/stats/0x0064945e2e65f44b2f976abb643e4a95df4e51a0

getQuickLink('bch-us.kryptex.network', '1DEpErj7isGi4oc7JSLXHPdAHaNNXwVR8r')
    => https://pool.kryptex.com/bch/miner/stats/1DEpErj7isGi4oc7JSLXHPdAHaNNXwVR8r

@maxmalysh maxmalysh force-pushed the add-kryptex-quicklink branch from 45715b8 to 14ab9f7 Compare February 24, 2026 22:18
@maxmalysh maxmalysh changed the title Add Kryptex pool quicklink Add pool.kryptex.com quicklink Feb 24, 2026
@maxmalysh maxmalysh changed the title Add pool.kryptex.com quicklink Add pool.kryptex.com dashboard link for Kryptex Pool users Feb 24, 2026
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
@maxmalysh maxmalysh force-pushed the add-kryptex-quicklink branch from 14ab9f7 to ba9e79f Compare February 25, 2026 01:18
{ 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

{ 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
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:/, '')}
}

mutatrum added a commit to mutatrum/ESP-Miner that referenced this pull request Mar 3, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants