a wownero mining puddle
Go to file
Jethro Grassie 257560b0a7
add script to inspect database
2019-05-07 01:17:00 -04:00
rxi/log Initial commit 2018-08-12 15:48:25 -04:00
src add size checks to utils 2019-05-05 23:53:36 -04:00
tools add script to inspect database 2019-05-07 01:17:00 -04:00
.gitattributes add script to inspect database 2019-05-07 01:17:00 -04:00
.gitignore Initial commit 2018-08-12 15:48:25 -04:00
LICENSE Initial commit 2018-08-12 15:48:25 -04:00
Makefile add script to inspect database 2019-05-07 01:17:00 -04:00
README.md fix Linux build dependencies 2019-04-07 15:54:35 -04:00
TODO update readme and todo to reflect new build system 2019-04-07 01:10:56 -04:00
pool.conf Initial commit 2018-08-12 15:48:25 -04:00

README.md

monero-pool

A Monero mining pool server written in C.

Design decisions are focused on performance and efficiency, hence the use of libevent and LMDB. Currently it uses only two threads (one for the stratum clients and one for the web UI clients). It gets away with this thanks to the efficiency of libevent (for the stratum clients) and some sensible proxying/caching being placed in front of the web UI.

The single payout mechanism is PPLNS, which favors loyal pool miners.

I have no plans to add any other payout mechanisms or other coins. Work should stay focussed on performance, efficiency and stability.

Project status

I have tested this quite a bit on the Monero testnet (if you plan to do the same, ensure to use --testnet flag when starting your wallet and daemon) and mainnet, but there is always room for improvement. Please see the TODO file for the current list of things that could do with looking at.

There is also a reference mainnet pool setup and running at http://monerop.com.

If you want to help with testing or help setting up your own pool, give me a shout on IRC: jtgrassie on Freenode.

Compiling from source

Dependencies

The build system now requires the Monero source tree to be cloned and compiled. Follow the instructions for compiling Monero, then export the following variables:

export MONERO_ROOT=/path/to/cloned/monero
export MONERO_BUILD_ROOT=$MONERO_ROOT/build/<system>/<branch>/<release|debug>

Replacing the values appropriately.

Beyond the Monero dependencies, the following extra libraries are also required to build the pool:

  • liblmdb
  • libevent
  • json-c
  • libmicrohttpd
  • uuid

As an example, on Ubuntu, these dependencies can be installed with the following command:

sudo apt-get install liblmdb-dev libevent-dev libjson-c-dev libmicrohttpd-dev uuid-dev

Compile

First install all the dependencies as described above.

Then to compile the pool as a release build, run:

make release

The application will be built in build/release/.

Optionally you can compile a debug build by simply running:

make

Debug builds are output in build/debug/.

Configuration

Copy and edit the pool.conf file to either the same directory as the compiled binary monero-pool, or place it in your home directory or launch monero-pool with the flag --config-file path/to/pool.conf to use a custom location. The configuration options should be self explanatory.

Running

Ensure you have your Monero daemon (monerod) and wallet RPC (monero-wallet-rpc) up and running with the correct host and port settings as defined in the pool config file.

It is highly recommended to run these on the same host as the pool server to avoid network latency when their RPC methods are called.

Then simply cd build/debug|release and run ./monero-pool.

Web UI

There is a minimal web UI that gets served on the port specified in the config file. It's advisable to use either Apache or Nginx as a proxy in front of this with some appropriate caching.

Supporting the project

This mining pool has no built-in developer donation (like other mining pool software has), so if you use it and want to donate, XMR donations to:

451ytzQg1vUVkuAW73VsQ72G96FUjASi4WNQse3v8ALfjiR5vLzGQ2hMUdYhG38Fi15eJ5FJ1ZL4EV1SFVi228muGX4f3SV

would be very much appreciated.

License

Please see the LICENSE file.