This is a wrapper script around Itamar Carvalho’s XPOW CPU miner. With this script you can mine XPOW in the background.
Donate (AVAX✅, ETH✅, BSC✅): 0xa8101F6Ec7080dE84233f1eE4fc1D6A2C1568327
- Clone this repository
- Download Ita’s miner (Linux, Windows)
- Move the Ita’s miner to the repo directory
- Make the miner executable on Linux with command
chmod +x xpow-miner
- Install NodeJS and npm (with
apt install nodejs npm
on Linux), on Windows God help you - Install ethers library inside the repo dir with command
npm i ethers dotenv
- Create a new wallet through MetaMask and fund it with AVAX (do not store large amounts in this wallet)
- Copy
.env.example
to.env
and add your private key toPRIVATE_KEY
- Adjust
MIN_WORK
andXPOW_WORKER_COUNT
(cores) based on your needs - Run
node xpow-wrapper.js
to start mining & minting
minWork
is the easiest nonce that will be submitted to the blockchain. Lower minWork means that you will mint more often with small transactions, resulting in high gas fee usage. 7
is recommended value at the current market conditions for XPOW. If you have a stronger computer and do not want to spend too much on gas you might find 8
more useful.
- Minting strategies
- Wallet fund management strategies
- Fix concurrent transaction nonce error
- Add full Windows support
- Use multiple cores
- Source private key from
.env