solo db-less bitcoin-only mining pool, meant for lan swarms
  • Go 96.4%
  • Shell 2.3%
  • JavaScript 0.8%
  • Dockerfile 0.5%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-07-27 09:56:00 -04:00
constants fix: reduce read buffer size and stop storing entire time.Times in client stats 2026-07-02 13:09:07 -04:00
contrib chore: basic tidy 2026-07-23 23:57:35 -04:00
mockdata fix tests and change random template byte to pnrg 2026-06-13 22:16:30 -04:00
.dockerignore add dockerfile 2026-01-30 17:19:19 -05:00
.gitignore update go version in dockerfile 2026-06-10 12:12:25 -04:00
api.go customize prometheus handler a bit 2026-07-18 22:20:55 -04:00
config.go disable sv2 path for now 2026-07-07 11:39:36 -04:00
config_test.go i really need to figure out why this freezes 2025-12-18 16:36:53 -05:00
gamblingaddict.png doc: update readme 2026-06-30 13:42:43 -04:00
go.mod remove coinbase copy in CreateJobTemplate 2026-07-17 23:25:45 -04:00
go.sum remove coinbase copy in CreateJobTemplate 2026-07-17 23:25:45 -04:00
jobtemplate.go remove coinbase copy in CreateJobTemplate 2026-07-17 23:25:45 -04:00
jobtemplate_test.go store height as uint64 2026-07-17 10:04:58 -04:00
LICENSE rename license 2025-07-29 11:14:01 -04:00
logmessages.go optimization: streamline lowdiff log 2026-07-27 09:56:00 -04:00
main.go chore: basic tidy 2026-07-23 23:57:35 -04:00
mockrecording_test.go optimization: clients only need the coinbase tx and block header 2026-07-16 11:05:32 -04:00
openapi.yaml doc: document metrics and swagger endpoints 2026-07-18 22:16:05 -04:00
README.MD optimization: streamline lowdiff log 2026-07-27 09:56:00 -04:00
showoff.png doc: add showoff pic 2026-02-06 14:42:53 -05:00
stratumclient.go optimization: streamline lowdiff log 2026-07-27 09:56:00 -04:00
stratumclient_test.go api: embed and serve openapi.yaml 2026-07-18 21:55:29 -04:00
util.go chore: basic tidy 2026-07-23 23:57:35 -04:00
util_test.go this commit got too big... adhd go brrr 2026-07-11 12:39:08 -04:00
zmq.go doc: document stratumclient.go 2026-07-09 23:46:56 -04:00

/pogolo - decentralize or die/

solo db-less bitcoin-only mining pool, meant for lan swarms, not the internet;
start it, point your miners to it, and watch the logs roll by
think of this as public-pool but minimal and for self-sovereign nerds
infinite thanks to btcd for bitcoin tooling and public-pool for reference

cpuminer on regtest Get pogolo on umbrelOS

want a go pool you can run on the public internet? check out https://github.com/Distortions81/M45-Core-goPool!

features

  • set a default address to mine to, no more ctrl+c ctrl+v ctrl+v ctrl+v ctrl+v ctrl+v
  • colorful and detailed logs (respects NO_COLOR)
  • read-only api
  • zmq and btcd websocket support
  • up to 160k shares/sec

implemented BIPs

  • 34
  • 41 (probably)
  • 54 (coinbase, relies on a compliant backend for the rest)
  • 310 (minus subscribe-extranonce)
  • 323

supported miners

  • *axe family (bitaxe, nerd*axe, etc)
  • cpuminer
  • antminers

supported backends

pogolo has no tls support.

  • JSON-RPC (no longpoll)
  • btcd websocket
  • ZMQ (hashblock topic)

unsupported

  • miners requiring extranonce.subscribe
  • luckyminers/other non-foss axe clones
  • stratum v2 (temporarily)

api

the api is documented in openapi.yaml, and exposed at /openapi.yaml.

install

umbrel

get pogolo from the umbrel app store: https://apps.umbrel.com/app/pogolo
then point your miners to stratum+tcp://umbrel.local:5661

docker

image at https://hub.docker.com/r/0xf0xx0/pogolo

copy the pogolo.toml from contrib/pkgs/docker, configure it to your needs, then run

docker run -d -v "./pogolo.toml:/config/pogolo.toml" 0xf0xx0/pogolo:latest

docker compose exists but likely needs tweaks, its also under contrib/pkgs/docker

environment overrides

for easy config

POGOLO_HOST: # overrides [pogolo].host
POGOLO_BACKEND_HOST: # overrides [backend].host
POGOLO_BACKEND_RPCAUTH: # overrides [backend].rpcauth
POGOLO_BACKEND_ZMQHOST: # overrides [backend].zmq_host

go

go install git.0xf0xx0.eth.limo/0xf0xx0/pogolo@latest

then follow manual install/configure.

manual install

build

git clone https://git.0xf0xx0.eth.limo/0xf0xx0/pogolo.git
cd pogolo
go build -trimpath -ldflags="-s -w -buildid="
go install

configure

# create config dir
mkdir "$XDG_CONFIG_HOME/pogolo"

# write embedded default config (preferred)
pogolo --writedefaultconf "$XDG_CONFIG_HOME/pogolo/pogolo.toml"
# OR copy the example config
cp contrib/pogolo.example.toml "$XDG_CONFIG_HOME/pogolo/pogolo.toml"

# configure interface, backend, and auth
vim "$XDG_CONFIG_HOME/pogolo/pogolo.toml"

# run
pogolo

theres a systemd unit at contrib/init/pogolo.service for bare installs
it expects pogolo to be in the system PATH, a bitcoin group, and a config file at /etc/pogolo/pogolo.toml.

sudo cp contrib/init/pogolo.service /etc/systemd/system/
sudo mkdir -p /etc/pogolo
pogolo --writedefaultconf /etc/pogolo/pogolo.toml
sudo chmod -R 755 /etc/pogolo
sudo chown -R :bitcoin /etc/pogolo 
sudo systemctl enable --now pogolo

miner config

host: stratum+tcp://<your lan ip>:5661
username: <your onchain address>[.<worker name>]
password: [required if set in pogolo.toml]
suggested diff: [optional]

the onchain address is also optional if the pool has a default configured.
shares submitted between job changes are normal, the expected error rate is <=0.2%.

benchmarking

to reproduce shares/s result:
benchmark with https://github.com/eandersson/open-pool-benchmark

TODO