Developed by the 0xBitcoin Community
(GNU PUBLIC LICENSE)
A pool for mining ERC20/EIP918 Tokens
See me running at https://tokenminingpool.com
Windows GPU Miner 1 https://bitbucket.org/LieutenantTofu/cosmic-v3/downloads/COSMiC-v4.1.1-MultiGPU-TMP.zip
Windows GPU Miner 2 https://github.com/mining-visualizer/MVis-tokenminer/releases
Windows GPU Miner 3 https://github.com/lwYeo/SoliditySHA3MinerUI/releases/tag/1.0.2
Linux GPU Miner https://github.com/lwYeo/SoliditySHA3Miner/releases
- npm install -g node-gyp 1.1. sudo apt-get install build-essential
You may need to do.. 1.2.sudo apt-get install python2.7 1.3.npm config set python python2.7
-
npm install
-
npm run webpack #(to build the website files)
-
rename 'sample.account.config.js' to 'account.config.js' and fill it with the pool's ethereum account data
-
install redis-server and make sure it is running
-
Edit pool.config.js to your tastes
-
Edit the website files in /app to change the look of the website
-
npm run server #(or npm run server test for Ropsten test net)
var poolconfig = {
minimumShareDifficulty: 5000, //lowest miner share difficulty
maximumShareDifficulty: 10000 //highest miner share difficulty
solutionGasPriceWei: 10, //ether paid by the pool for each mint
transferGasPriceWei: 6, //ether paid by the pool for each payment
poolTokenFee: 5, //percent of tokens the pool keeps for itself
communityTokenFee: 2, //percent of tokens the pool pledges to donate
minBalanceForTransfer: 1500000000,
payoutWalletMinimum: 100000000000,
allowCustomVardiff: false,
rebroadcastPaymentWaitBlocks: 500,
minPaymentsInBatch: 5,
//web3provider: "http://127.0.0.1:8545" //point at Geth or remove to use Infura
}
EDIT THIS FILE!!!
- Replace 'mintforwarder' with your own deployed version of the contract !!!
- Replace 'batch payments' contract as well !!! your own deployed contract !!
- replace 'DoubleKingsReward' with your own deployed contract ! [or disable in the code]
YOU DO NOT have to replace/redeploy the MiningKing contract as this is 'global' and for everyone
- Point a EIP918 tokenminer at your pool using http://localhost:8586 (or ipaddress:8586 or domain.com:8586) (make sure firewall allows this port)
- View website interface at http://localhost:3000 (Feel free to set up nginx/apache to serve the static files in /public)
Digitalocean guide: https://www.digitalocean.com/community/tutorials/how-to-install-mongodb-on-ubuntu-16-04#step-3-%E2%80%94-adjusting-the-firewall-(optional)
- Mongo is used to store data related to miner shares, balances, and payments
- sudo apt-get install redis
- sudo service redis-server start
- Redis will serve/connect at localhost:6379 by default - the pool will use this port
- Redis is only used for frontend non-critical data, but is required for this web application
node util/reset_all_miner_reward_data.js