Good day,
I love wasting some money on mining on a VPS and was looking for a CPU miner that combined all the algos currently used by emerging altcoins.
Seems that some newer coins use their own algos and we need to compile one for each of the altcoins not following the Bitcoin or Litecoin path.
So decided to cook my own version of cpuminer that would combine them all in one single miner. Out of better imagination, I called it allminer.
It currently sports the following algos:
static const char *algo_names[] = {
[ALGO_SCRYPT] = "scrypt",
[ALGO_SCRYPT_JANE] = "scrypt-jane",
[ALGO_SHA256D] = "sha256d",
[ALGO_QUARK] = "quark",
[ALGO_KECCAK] = "keccak",
[ALGO_QUBIT] = "qubit",
[ALGO_SKEIN] = "skein",
[ALGO_X] = "X11",
};
So it works with Bitcoin (who mines Bitcoins with cpu anymore?), Litecoins... All their derivatives but also Quarkcoin, Qubitcoin, Maxcoin, Skein and more.
All the code was merged from the repos of the original authors. I'm merely the cook that assembled all together. I'll add other algos as they come out.
Here's the repo:
https://github.com/KaSt/AllMinerIn case you find this useful... I'm happy...
Ka.