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
2026-07-17 10:04:58 -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 doc: update example conf 2026-07-07 12:44:36 -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 feat: store more detailed found block info 2026-07-17 10:02:20 -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 should be final version validation fix, + dep updates 2026-07-15 11:35:50 -04:00
go.sum should be final version validation fix, + dep updates 2026-07-15 11:35:50 -04:00
jobtemplate.go store height as uint64 2026-07-17 10:04:58 -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 this commit got too big... adhd go brrr 2026-07-11 12:39:08 -04:00
main.go store height as uint64 2026-07-17 10:04:58 -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 feat: store more detailed found block info 2026-07-17 10:02:20 -04:00
README.MD tidy 2026-07-12 21:42:40 -04:00
showoff.png doc: add showoff pic 2026-02-06 14:42:53 -05:00
stratumclient.go deref coinbasetx copy 2026-07-16 11:50:46 -04:00
stratumclient_test.go test comments 2026-07-15 22:56:54 -04:00
util.go feat: store more detailed found block info 2026-07-17 10:02:20 -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
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
start it, point your miners to it, and watch the logs roll by

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 (see api.go and swagger spec)
  • 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)

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) files exist and work but likely need tweaks, theyre 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