Monero P2Pool consensus reimplementation
Go to file
DataHoarder c6c104732c
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
Consensus version v3.8.0 with proper merge mining sidechain tested support
2024-04-23 18:59:36 +02:00
merge_mining Bump go-randomx to v2.0.0 with faster execution and JIT 2024-04-12 02:18:49 +02:00
monero Upgrade to go-randomx v3.1.0 with full JIT and full mode support 2024-04-23 15:28:23 +02:00
p2pool Consensus version v3.8.0 with proper merge mining sidechain tested support 2024-04-23 18:59:36 +02:00
testdata Remove unused .gitignore entries under testdata 2024-04-06 03:22:06 +02:00
types Unmarshal Difficulty bigint from JSON 2024-04-09 17:49:22 +02:00
utils Update to version v3.7.0, remove replace directives from go.mod 2024-04-14 10:13:19 +02:00
.drone.yml Upgrade to go-randomx v3.1.0 with full JIT and full mode support 2024-04-23 15:28:23 +02:00
.gitignore P2Pool consensus v3.0.0 2024-04-03 19:43:13 +02:00
go.mod Upgrade to go-randomx v3.1.0 with full JIT and full mode support 2024-04-23 15:28:23 +02:00
go.sum Upgrade to go-randomx v3.1.0 with full JIT and full mode support 2024-04-23 15:28:23 +02:00
HARDFORKS.md Added HARDFORKS.md 2024-04-23 17:17:47 +02:00
LICENSE P2Pool consensus v3.0.2 2024-04-05 08:33:31 +02:00
README.md Upgrade to go-randomx v3.1.0 with full JIT and full mode support 2024-04-23 15:28:23 +02:00

P2Pool Consensus

This repository contains a consensus-compatible reimplementation of a P2Pool internals for Monero P2Pool decentralized pool.

Other general tools to work with Monero cryptography are also included.

You may be looking for P2Pool Observer instead.

Reporting issues

You can give feedback or report / discuss issues on:

Donations

This project is provided for everyone to use, for free, as a hobby project. Any support is appreciated.

Donate to support this project, its development, and running the Observer Instances on 4AeEwC2Uik2Zv4uooAUWjQb2ZvcLDBmLXN4rzSn3wjBoY8EKfNkSUqeg5PxcnWTwB1b2V39PDwU9gaNE5SnxSQPYQyoQtr7

You can also use the OpenAlias p2pool.observer directly on the GUI.

Development notes

This library supports both Golang RandomX library and the C++ RandomX counterpart.

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:

$ git clone --depth 1 --branch master https://github.com/tevador/RandomX.git /tmp/RandomX && cd /tmp/RandomX && \
    mkdir build && cd build && \
    cmake .. -DCMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_PREFIX:PATH=/usr && \
    make -j$(nproc) && \
    sudo make install && \
    cd ../ && \
    rm -rf /tmp/RandomX