Hi devs, how to solomining this coin ?
You can mine directly from wallet:
Go to Help.
Click Debug Window.
This is the console where you will execute all commands.
Type this command to start mining:
setgenerate true -1
If you want to use a specific number of CPU cores, instead of -1, type the number of cores.
You can then type the following to see the status of generation:
getmininginfo
Else let me know which miner software you running and i can assist you to configure that, works with cgminer or other aswell.
Example:
cgminer.exe -o
http://127.0.0.1:37424 --scrypt -u user -p password
Best Regards IMPS
The miner software is cgminer.
Can I run the daemon on VPS and run miner from several places ? How to setup ? Thank you.
Yes it possible, best would be to configure your own mining pool and then setup all your mining against that pool.
You can setup nomp on an VPS:
https://blockgen.net/setup-your-own-mining-pool/Then you just setup miners to mine against your pool:
# install dependencies
sudo apt-get install libcurl4-openssl-dev libncurses5-dev pkg-config automake yasm
# clone cpuminer
git clone
https://github.com/pooler/cpuminer.git# compile
cd cpuminer
./autogen.sh
./configure CFLAGS="-O3"
make
# choose a miner pool and register there
# start the miner
./minerd --url=your.minerpool.org --user=username --pass=password
But it requires some Linux skills to setup an mining pool (but can be worth it), it's fun to operate a mining pool + you can add multiple coins for others to mine aswell and make it profitable.
Sadly i can't be technical guidance in your case, i either recommend mining against local wallet or choose an existing pool.
Else you need to consider to setup your own mining pool.
Best Regards IMPS