0xbitcoin / 0xbitcoin-miner

Mine the 0xbitcoin ERC20 token using a command line NodeJS application
http://0xbitcoin.org
82 stars 66 forks source link

0xBitcoin ERC20 Token Miner

LICENSE GPL

Solves proof of work to mine supported ERC20 tokens. This is a CPU miner. (See Releases for links to GPU miners.)

Update 1.6 - Config Files For Days

This new build uses miner-config.js for setting parameters and no longer has an active command line. If you do not have an Ethereum account, it is recommended that you use Metamask to generate one.

Official Releases Downloads

Download Packaged Releases

Building from Source

Setup (Windows/Linux)

  1. Install NodeJS 10 (nvm install 10)
  2. Clone/download the project
  3. Open a terminal, cd into the project folder and run 'npm install' to install dependencies
  4. Run the command 'npm run build' to build C files with node-gyp
  5. Set up the config file 'miner-config.json' (duplicate miner-config-sample as a reference)
  6. Start the miner with 'npm run miner'

Setup (Mac)

  1. Install Homebrew & NodeJS 10
  2. Run 'brew install yarn' to install yarn package manager
  3. Clone/download this project
  4. Open a terminal, cd into the project folder and run 'yarn'
  5. Run the command 'yarn build' to build C files with node-gyp
  6. Set up the config file 'miner-config.json' (duplicate miner-config-sample as a reference)
  7. Start the miner with 'node index.js'

NOT WORKING ?

Make sure you have build-essential installed to compile C code and make sure you have python3.

Try these commands:

node-gyp rebuild

Miner-Config.js File

You must create a file called 'miner-config.json' in the same directory as index.js. Duplicate 'miner-config-sample.json' and rename it.

If you do not have a public address or private key, use Metamask or another Etherum wallet to make them.

REMINDER: You >can< set the web3provider to a ropsten, mainnet, or other type of test-network provider and the software will still work. If solo mining (not to a pool) just be sure to define the correct contract address for that network and be sure your account has a small amount of ether (or test-ether).

"mining_account_public_address":"0x111111",
"mining_account_private_key":"1234567",
"mining_style":"solo" OR "pool",
"contract_address":"0xb6...",
"pool_url":"http://tokenminingpool.com:8080",
"gas_price_gwei":10,
"cpu_thread_count": 1,
"web3provider": "https://infura.io/API/apikey...."

Getting Started

  1. Duplicate the 'miner-config-sample.json' file and rename it to 'miner-config.json'
  2. Set the parameters in this file appropriately
  3. In the console, run the command 'node index.js' to start mining

Pool Mining

Solo Mining

Testing

npm run test

Credits

  1. Zegordo (Developed the accelerated CPU Miner)

    ETH address [0x8AE981d92875C88f713600EB7dC4D23FA7E0E621]

Tokens that can be mined using Proof of Work:

  1. 0xBitcoin token - http://0xbitcoin.org - https://github.com/0xbitcoin/0xbitcoin-token