Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ee9144ab13 | |||
| e9a919711f |
@@ -1,3 +1,10 @@
|
||||
# drg-xmrig 6.25.2
|
||||
- Fixed default pool config: `url` now includes the stratum port `pool.dragonx.is:3433` (was portless, falling back to firewalled 3333) and `algo` defaults to `rx/dragonx`.
|
||||
- Clarified that the pool requires a shielded `zs-address` as the worker name (config/example placeholders updated).
|
||||
- `build_windows.sh`: fetch OpenSSL 1.1.1w from the GitHub release mirror (old openssl.org URL is gone).
|
||||
|
||||
---
|
||||
|
||||
# XMRig-HAC Fork
|
||||
- Added **DragonX** coin support
|
||||
- Added **rx/hush** algorithm (RandomX-HUSH variant for HUSH/DragonX)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "drg-xmrig",
|
||||
"version": "6.25.1",
|
||||
"version": "6.25.2",
|
||||
"description": "DragonX RandomX (rx/dragonx) CPU miner",
|
||||
"main": "index.js",
|
||||
"directories": {
|
||||
|
||||
@@ -33,7 +33,7 @@ if [ ! -f "$DEPS_DIR/lib/libssl.a" ]; then
|
||||
cd "$DEPS_DIR"
|
||||
|
||||
if [ ! -f "openssl-${OPENSSL_VERSION}.tar.gz" ]; then
|
||||
wget "https://openssl.org/source/old/1.1.1/openssl-${OPENSSL_VERSION}.tar.gz"
|
||||
wget "https://github.com/openssl/openssl/releases/download/OpenSSL_1_1_1w/openssl-${OPENSSL_VERSION}.tar.gz"
|
||||
fi
|
||||
|
||||
if [ ! -d "openssl-${OPENSSL_VERSION}" ]; then
|
||||
|
||||
@@ -1,20 +1,15 @@
|
||||
:: Example batch file for mining Monero at a pool
|
||||
:: Example batch file for mining DragonX at the official pool
|
||||
::
|
||||
:: Format:
|
||||
:: xmrig.exe -o <pool address>:<pool port> -u <pool username/wallet> -p <pool password>
|
||||
:: xmrig.exe -o <pool address>:<pool port> -u <zs-address> -p x -a rx/dragonx
|
||||
::
|
||||
:: Fields:
|
||||
:: pool address The host name of the pool stratum or its IP address, for example pool.hashvault.pro
|
||||
:: pool port The port of the pool's stratum to connect to, for example 3333. Check your pool's getting started page.
|
||||
:: pool username/wallet For most pools, this is the wallet address you want to mine to. Some pools require a username
|
||||
:: pool password For most pools this can be just 'x'. For pools using usernames, you may need to provide a password as configured on the pool.
|
||||
::
|
||||
:: List of Monero mining pools:
|
||||
:: https://miningpoolstats.stream/monero
|
||||
::
|
||||
:: Choose pools outside of top 5 to help Monero network be more decentralized!
|
||||
:: Smaller pools also often have smaller fees/payout limits.
|
||||
:: pool address The DragonX pool stratum host, pool.dragonx.is
|
||||
:: pool port 3433 (plain TCP stratum, no TLS)
|
||||
:: zs-address Your DragonX shielded zs... address. The pool REQUIRES a shielded zs-address as the worker name.
|
||||
:: pass Just 'x'.
|
||||
:: algo rx/dragonx (aliases: rx/hush, dragonx)
|
||||
|
||||
cd /d "%~dp0"
|
||||
xmrig.exe -o xmrpool.eu:3333 -u YOUR_WALLET_ADDRESS -p x
|
||||
xmrig.exe -o pool.dragonx.is:3433 -u YOUR_DRGX_ZS_ADDRESS -p x -a rx/dragonx
|
||||
pause
|
||||
|
||||
@@ -60,10 +60,10 @@
|
||||
"log-file": null,
|
||||
"pools": [
|
||||
{
|
||||
"algo": null,
|
||||
"algo": "rx/dragonx",
|
||||
"coin": null,
|
||||
"url": "pool.dragonx.is",
|
||||
"user": "YOUR_WALLET_ADDRESS",
|
||||
"url": "pool.dragonx.is:3433",
|
||||
"user": "YOUR_DRGX_ZS_ADDRESS",
|
||||
"pass": "x",
|
||||
"rig-id": null,
|
||||
"nicehash": false,
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
#define APP_ID "drg-xmrig"
|
||||
#define APP_NAME "DRG-XMRig"
|
||||
#define APP_DESC "DragonX RandomX miner (rx/dragonx)"
|
||||
#define APP_VERSION "6.25.1-drg1"
|
||||
#define APP_VERSION "6.25.2"
|
||||
#define APP_DOMAIN "dragonx.is"
|
||||
#define APP_SITE "www.dragonx.is"
|
||||
#define APP_COPYRIGHT "Copyright (C) 2026 dragonx.is"
|
||||
@@ -19,7 +19,7 @@
|
||||
|
||||
#define APP_VER_MAJOR 6
|
||||
#define APP_VER_MINOR 25
|
||||
#define APP_VER_PATCH 1
|
||||
#define APP_VER_PATCH 2
|
||||
|
||||
#ifdef _MSC_VER
|
||||
# if (_MSC_VER >= 1950)
|
||||
|
||||
Reference in New Issue
Block a user