git.gammaspectra.live/P2Pool/consensus/v3@v3.8.0/README.md (about)

     1  # P2Pool Consensus
     2  
     3  This repository contains a consensus-compatible reimplementation of a P2Pool internals for [Monero P2Pool](https://github.com/SChernykh/p2pool) decentralized pool.
     4  
     5  Other general tools to work with Monero cryptography are also included.
     6  
     7  You may be looking for [P2Pool Observer](https://git.gammaspectra.live/P2Pool/observer) instead.
     8  
     9  ## Reporting issues
    10  
    11  You can give feedback or report / discuss issues on:
    12  * [The issue tracker on git.gammaspectra.live/P2Pool/consensus](https://git.gammaspectra.live/P2Pool/consensus/issues?state=open)
    13  * Via IRC on [#p2pool-log@libera.chat](ircs://irc.libera.chat/#p2pool-log), or via [Matrix](https://matrix.to/#/#p2pool-log:monero.social)
    14  
    15  ## Donations
    16  This project is provided for everyone to use, for free, as a hobby project. Any support is appreciated.
    17  
    18  Donate to support this project, its development, and running the Observer Instances on [4AeEwC2Uik2Zv4uooAUWjQb2ZvcLDBmLXN4rzSn3wjBoY8EKfNkSUqeg5PxcnWTwB1b2V39PDwU9gaNE5SnxSQPYQyoQtr7](monero:4AeEwC2Uik2Zv4uooAUWjQb2ZvcLDBmLXN4rzSn3wjBoY8EKfNkSUqeg5PxcnWTwB1b2V39PDwU9gaNE5SnxSQPYQyoQtr7?tx_description=P2Pool.Observer)
    19  
    20  You can also use the OpenAlias `p2pool.observer` directly on the GUI.
    21  
    22  ### Development notes
    23  
    24  This library supports both [Golang RandomX library](https://git.gammaspectra.live/P2Pool/go-randomx) and the [C++ RandomX counterpart](https://github.com/tevador/RandomX).
    25  
    26  By default, the Golang library will be used. You can enable the C++ library if by using CGO and the compile tag `enable_randomx_library` and have it installed via the command below:
    27  ```bash
    28  $ git clone --depth 1 --branch master https://github.com/tevador/RandomX.git /tmp/RandomX && cd /tmp/RandomX && \
    29      mkdir build && cd build && \
    30      cmake .. -DCMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_PREFIX:PATH=/usr && \
    31      make -j$(nproc) && \
    32      sudo make install && \
    33      cd ../ && \
    34      rm -rf /tmp/RandomX
    35  ```