Parasite Toolkit https://parasite.space
  • Rust 90.8%
  • HTML 4.5%
  • Shell 1.8%
  • JavaScript 1.7%
  • CSS 0.8%
  • Other 0.4%
Find a file
paratoxic c2f63314a2
All checks were successful
CI / ckpool (push) Successful in 25s
CI / lint (push) Successful in 2m34s
CI / test-linux (push) Successful in 9m9s
Deprecate severe starvation and trim cooldown, add surplus and relative load (#636)
2026-09-18 17:53:16 +00:00
.forgejo/workflows Add ckpool submodule (#623) 2026-08-28 17:46:02 +00:00
.github/workflows Add ckpool submodule (#623) 2026-08-28 17:46:02 +00:00
bin Improve key management/isolation (#631) 2026-09-08 20:43:50 +00:00
bitcoin@9be056a8a7 Add bitcoin node + IPC to test harness (#602) 2026-08-20 16:07:38 +00:00
ckpool@bb65d9fbc6 Add ckpool submodule (#623) 2026-08-28 17:46:02 +00:00
copr Add bitcoin node + IPC to test harness (#602) 2026-08-20 16:07:38 +00:00
crates Track disconnects to differentiate churn, probes and trims (#633) 2026-09-17 00:34:03 +00:00
examples Add EventSink for External Logging (#342) 2026-01-27 15:52:12 -06:00
fuzz Release 0.6.0 (#620) 2026-08-25 22:57:43 +00:00
src Deprecate severe starvation and trim cooldown, add surplus and relative load (#636) 2026-09-18 17:53:16 +00:00
static Deprecate intents machinery (#635) 2026-09-17 16:18:23 +00:00
templates Deprecate severe starvation and trim cooldown, add surplus and relative load (#636) 2026-09-18 17:53:16 +00:00
tests Deprecate intents machinery (#635) 2026-09-17 16:18:23 +00:00
.clang-format Add linting (#30) 2025-04-15 15:51:08 -04:00
.gitignore Improve CI reliability (#618) 2026-08-26 17:13:07 +00:00
.gitmodules Add ckpool submodule (#623) 2026-08-28 17:46:02 +00:00
build.rs Show git commit on dashboard (#432) 2026-02-19 02:47:27 +00:00
Cargo.lock Update bip322 dep (#624) 2026-08-31 17:15:35 +00:00
Cargo.toml Update bip322 dep (#624) 2026-08-31 17:15:35 +00:00
CHANGELOG.md Release 0.6.0 (#620) 2026-08-25 22:57:43 +00:00
justfile Add bitcoin node + IPC to test harness (#602) 2026-08-20 16:07:38 +00:00
LICENSE Add license (#189) 2025-09-21 18:28:10 +00:00
README.md Add para probe command (#612) 2026-08-23 00:43:40 +00:00
rustfmt.toml Restructure repo (#120) 2025-07-28 21:34:29 -04:00

para


para is a command-line tool for miners and pools. It is experimental software with no warranty. See LICENSE for more details.

It implements a Rust library for the Stratum protocol and includes helpful command-line tools that measure ping, probe stratum servers, mimic mining machines and run pool logic. To see a full list of available commands just follow the instructions below and do para help.

This repository includes a modified fork of ckpool, which currently runs on parasite.wtf:42069. For instructions on how to connect, please visit parasite.space. The modifications to the C codebase of ckpool are:

  • postgres database for share logging
  • custom coinbase logic.
  • support for signet
  • miscellaneous helpful config flags

Setup

Requirements:

Manual Install

Rust is required to build, test, and develop. To install with curl:

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh 

Bundled Environment

This repo includes a bundled development environment with Hermit that provides the above requirements.

. ./bin/activate-hermit

Build

Clone the para repo:

git clone https://github.com/parasitepool/para.git
cd para

To build a specific version of para, first checkout that version:

git checkout <VERSION>

And finally to actually build para:

cargo build --release

Once built, the para binary can be found at ./target/release/para.

You can also install para directly into your path by doing:

cargo install --path .

Troubleshooting

Build Issues

Verify Minimum Versions

para requires:

  • rustc version 1.90.0 or later
    • Available from rustup update
  • gcc version 10.5.0 or later.
    • Available from your package manager or gnu.org

These versions can be verified with:

rustc --version
gcc --version

Linux Builds

To compile software on Linux systems, you may need additional packages which are not always installed by default. For Debian based systems (Ubuntu, Kali, etc), you can install these dependencies with apt:

sudo apt install build-essential pkg-config libssl-dev

Windows Builds

To build Rust programs on Windows, you need one of two ABI configurations:

  1. MSVC
    • On Windows, rustup will configure Rust to target this ABI by default
    • Visual Studio with Build Tools is required for building with MSVC
      • this can be a very large install (~4GB)
  2. GNU (GCC)
    • Available from the rustup toolchain install stable-gnu command
    • Requires MinGW/MSYS2
      # Run from within the MSYS terminal
      pacman -S --needed base-devel mingw-w64-ucrt-x86_64-toolchain \
      mingw-w64-ucrt-x86_64-nasm
      

The Rustup Book provides more details on Windows builds.