The objective is a "light-weight" pool that does what needs to be done.
We're no longer calling this a "poxy" as that term was meant to bridge getwork and stratum and no client even has getwork anymore.
This pool will not work for MCL (due to alternating blocks using CCs), to come later.
- node v21.4+ (installs by following "Install" below)
- coin daemon
Yes, this is "a lot" for beginners to understand; however, solo mining isn't meant to be easy. Copy/paste into terminal:
NODE_MAJOR=21
sudo apt-get update
sudo apt-get install -y ca-certificates curl gnupg build-essential libsodium-dev
sudo mkdir -p /etc/apt/keyrings
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | sudo tee /etc/apt/sources.list.d/nodesource.list
sudo apt-get update
sudo apt-get install nodejs -y
sudo npm install npm -g
git clone https://github.com/TheComputerGenie/komodo-solomining
cd komodo-solomining
npm install
Go to config.json and change it to your setup.
GPU: 300
Minis: 3000
Large ASICs: 30000
Rentals: 1350000
npm start
git pull
git pull
rm -rf node_modules
npm install
- This is meant for solo mining.
- There is no share-based pay system.
- No payments (coins go directly to the address in config).
- NO equihashverify - While this pool will work with rentals (NiceHash checked at the time of publishing), it is intended for the true solo miner, who needs no such protection against fake shares.
-
(N) VarDiff only waits 1/2 of
retargetTime
when miners first enter the pool in order to establish an initial stats set. -
(N) If the code looks like it has 9 styles of writing, that because it does. It was a long journey from NOMP to here with many hands in the jar and no "standard" of style. Over time, the base has become the spaghetti that NOMP was written to avoid, and over time that will be changed.
-
(N KI) Web pages use online resources for css and some of the js. These min files are "standard", used on countless sites, can be checked at your discretion, and may or may not be localized at some future point.
-
(N) There is no TLS or miner banning functionality, because I'm not sure I could ever be convinced of need for a solo setup.
Released under the GNU General Public License 3 http://www.gnu.org/licenses/gpl-3.0.html
Forked from aayanl/equihash-solomining which is licensed under GNU GPL v2 and now directs to WaveringAna Original docs