Skip to content
Technology

Engineered to be provably correct.

Each capability below is built, tested and running. Point a miner and check any of them yourself.

Block safety

A valid block, always

Commitment from your node

The pool reads your block’s SegWit commitment from your own node and never recomputes it. There is no second calculation to disagree with the first.

Verified, not asserted

Before a block leaves for mainnet the pool checks it byte for byte: coinbase, commitment, payout, value.

Effective hashrate

Never waste a hash

~10ms

New work, instantly

A new block reaches your rig the moment it lands. The core watches the tip itself, so nothing waits on an outside notifier.

Back in seconds

If your node hiccups, the pool reconnects and serves fresh work in under ten seconds.

Protocol robustness

Fuzz-verified SV1 & SV2

Hardened Noise

Encrypted V2 that refuses nonce reuse, verifies every signature, and wipes its keys from memory.

Nothing over-reads

The parser bounds-checks every byte of every frame. Malformed input gets a clean error back.

Real firmware, native

Bitaxe & NerdAxe run on extended channels with a deterministic per-channel extranonce.

0failures

Nothing broke under fire

An adversarial battery of floods, garbage and oversized frames left zero crashes, leaks or lost shares.

Counted once

The pool credits each accepted share exactly once, on both protocols.

Standard-exact V2

Byte-exact to the published Stratum V2 standard.

Public-grade defense

Abuse can’t reach your block

A flood can’t hide your win

Per-IP caps, rate limits and slowloris timeouts hold off abuse. The submit-rate limit gates accounting alone and never the block test, so no flood of connections or shares can delay or bury a solved block.

Foundation

Built to last

Clean-room C core

An original C engine with a watchdog, a crash handler and an fsync journal. A solved block survives a crash or a restart.

Can’t death-spiral

Memory caps, auto reject-recovery and a self-healing difficulty engine. Built to run unattended, for years.

Honest by construction

Your real odds, p = 1 / (D · 2³²), sit on the page where you can read them.

Job declaration

You choose what goes in the block

AllocateMiningJobToken

You ask for a token

The pool binds a token to your channel and hands back an identity for the job you are about to declare.

DeclareMiningJob

You name the transactions

You send the set you want inside the block. The pool records that set against your token.

ProvideMissingTransactions

Only the gaps move

The pool asks for the transactions it does not already hold, by position. Nothing it has seen crosses the wire twice.

SetCustomMiningJob

It serves back your job

The work you receive is the job you declared, not a template the pool picked for you.

PushSolution

You submit the header

The pool rebuilds the body from the set your token declared, then checks it byte for byte before it leaves.

It refuses rather than substitute

A declared job commits to your transaction set, so the body has to come from your set and nothing else. If your declaration ages past the retention window, the pool writes block.invalid reason=declared-set-evicted and stops. It will not assemble a body from its own template and send that instead, because a substituted body is not the block you solved.

Stratum V1

The hot path, measured

Hardware SHA, chosen at runtime

The core reads cpuid and takes the hardware SHA-256 path when the machine offers one. The same binary still starts on a machine that does not, so there is no second build to keep straight. The hardware kernel was checked byte for byte against a separate implementation across four thousand inputs and fourteen length classes.

Counted once, whatever the casing

The duplicate check keys on the canonical share: binary extranonce, rolled version. Send the same share twice with the hex in a different case and both land on the same key, so the second one is rejected. A lookup touches about three slots with four thousand shares resident, where the old scan walked all four thousand.

One read, one write

epoll here is level triggered, so a short read already proves the socket is empty and the extra call that could only answer EAGAIN is gone. Events to the control plane leave in one write per pass of the event loop instead of one write each.

Reads that could only answer EAGAIN171,8000
System calls, same load673,769618,844
CPU per share37.81 µs36.14 µs

Same generator, same load, run back to back. Tip to work on the wire measures about four milliseconds at the median in production, taken from the core’s own timestamps.

Custody

What holds the claim up

Payouts

Non-custodial by construction

Payment happens inside the block. The coinbase output pays the address in your worker username, so there is no balance to withdraw and no window where the pool holds your coin.

Read any block it finds and check the output against what you configured.

Proof of Custody

No reserves to audit

The pool never holds a coin, so there is nothing to prove reserves of. What you can audit is the work it counted: shares, difficulty served, best share and window, sealed at the moment they were written.

Each seal binds its own position in the journal, so no number in it moves afterwards.

BIP340

A signature you check offline

Every receipt carries a 64-byte BIP340 Schnorr signature over a domain-separated encoding of its sequence, type and payload. You verify it against a key you pinned yourself.

The verifier is a static binary with no network and no dependencies. Checking does not need this pool online, or honest, or still running.

Stratum V2

The protocol lives in the daemon

Stratum V2 splits mining into roles. NexusPool is the pool role and implements it in the same C daemon that speaks V1, so nothing translates between your rig and the pool.

Pin the authority key and anything trying to answer for the pool fails the Noise handshake instead of dropping to plaintext.

Point a miner. See it for yourself.

The proof you can hold is the Glass Ledger: a signature for the work the pool counted, which you check on your own machine.

Technology: every capability, verified · NexusPool