You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
webworker01 c315b9b871
Add trackShares template example
6 years ago
.vscode Add coin configs and debugging mode 6 years ago
Old READEM update 6 years ago
coins Add coin configs and debugging mode 6 years ago
libs Add trackShares poolconfig option, defaults to true set to false to not track shares and pending blocks to payout 6 years ago
scripts init 6 years ago
website Re-enable website rebuilding, fix front end stuff 6 years ago
.gitignore init 6 years ago
README.md Update README.md 6 years ago
coins.template modified: coins.template 6 years ago
config_example.json Update all packages to latest for security 6 years ago
gencfg.sh modified: gencfg.sh 6 years ago
init.js Disable build stats on web interface temporarily 6 years ago
package-lock.json Add coin configs and debugging mode 6 years ago
package.json Re-enable website rebuilding, fix front end stuff 6 years ago
poolconfigs.template Add trackShares template example 6 years ago

README.md

Mining stratum for Komodo and Komodo assetchains.

(READY FOR TESTING - Share distribution needs testing)

Requirements

Differences between this and Z-NOMP

  • This is meant for Komodo mining
  • Founders, Treasury, and other ZEC/ZEN specific stuff is removed

Install

Some initial setup

# The following packages are needed to build both Komodo and this stratum:
sudo apt-get update
sudo apt-get install build-essential pkg-config libc6-dev m4 g++-multilib autoconf libtool ncurses-dev unzip git python python-zmq zlib1g-dev wget libcurl4-openssl-dev bsdmainutils automake curl libboost-dev libboost-system-dev libsodium-dev -y

Now, let's build Komodo

git clone https://github.com/jl777/komodo -b dev
cd komodo
zcutil/fetch-params.sh
zcutil/build.sh -j8
strip src/komodod
strip src/komodo-cli

Now, let's run the assets.

  • This will start ALL of the assets might take a day or so to sync, depending on system speed/network connection.
cd ~/komodo/src
./assetchains.old

Once all these chains have synced up we can configure the stratum.

We need node and npm installed

cd ~
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -

Now, let's build our stratum and run it (this stage assumes you already have Redis properly installed and running) This will install the stratum and configure it for all the assetchains on your system automatically. It must be run from the same user as the coin deamons were launched, as it pulls the rpcuser/pass from the conf file in the home directory.

git clone https://github.com/webworker01/knomp
cd knomp
./gencfg.sh
npm install
npm start

Further info on config

License

Forked from ComputerGenie repo (deleted)

Released under the GNU General Public License v2 http://www.gnu.org/licenses/gpl-2.0.html

Forked from z-classic/z-nomp which is licensed under MIT License (See Old/LICENSE file)