High performance CryptoNote mining stratum with Web-interface written in Golang.
High performance CryptoNote mining stratum with Web-interface written in Golang. This project is forked from [monero-stratum](https://github.com/sammy007/monero-stratum), with the support for Kevacoin. It includes the part of Monero source code that is required for build and therefore does not need an external Monero source tree. It also builds on Windows through MSYS2.
@ -22,70 +21,111 @@ High performance CryptoNote mining stratum with Web-interface written in Golang.
@@ -22,70 +21,111 @@ High performance CryptoNote mining stratum with Web-interface written in Golang.
* Everything required to build [Monero](https://github.com/monero-project/monero) or [Kevacoin](https://github.com/kevacoin-project/kevacoin). Follow their build instructions to install the dependencies for your system.
`MONERO_DIR=/path/to/monero` is optional, not needed if both `monero` and `monero-stratum` is in the same directory like `/opt/src/`. By default make will search for monero libraries in `../monero`. You can just run `cmake .`.
Check the output of `cmake` and make sure it finds the `OpenSSL` library, and the library is **inside** your `MSYS2` directory. e.g. the output should be something like this:
-- Found OpenSSL: C:/msys64/mingw64/lib/libcrypto.dll.a (found version "1.1.1b")
If the `OpenSSL` is not inside your `MSYS2` directory, `cmake` is not using the correct `OpenSSL` library. e.g.
-- Found OpenSSL: C:/OpenSSL-Win64/lib/libeay32.lib (found version "1.0.1a")
In the above case, you need to adjust the search path so that `cmake` uses the correct library.
Now we are ready to build:
make
cp cnutil/libcnutil.dll .
### Running Stratum
./build/bin/monero-stratum config.json
./keva-stratum config.json
If you need to bind to privileged ports and don't want to run from `root`:
@ -152,13 +192,6 @@ Configuration is self-describing, just copy *config.example.json* to *config.jso
@@ -152,13 +192,6 @@ Configuration is self-describing, just copy *config.example.json* to *config.jso
You must use `anything.WorkerID` as username in your miner. Either disable address validation or use `<address>.WorkerID` as username. If there is no workerID specified your rig stats will be merged under `0` worker. If mining software contains dev fee rounds its stats will usually appear under `0` worker. This stratum acts like your own pool, the only exception is that you will get rewarded only after block found, shares only used for stats.