Verifiable Off-Chain Compute
Ayrıca şöyle anılır verifiable compute, off-chain verifiable compute, DePIN compute
Verifiable off-chain compute is a way to get the benefit of cheap, distributed hardware, many independent operators contributing GPU capacity, for heavy computation like AI inference, without running that computation on a blockchain itself (which would be orders of magnitude too slow and expensive) and without simply trusting whichever operator happens to pick up the job. The core problem it solves: if the actual work happens off-chain, on hardware you don't control, how do you know the result you got back is real and not fabricated?
The pattern that's emerged across this space, rather than re-running every single job twice (expensive) or trusting blindly (unsafe), is optimistic verification: assume operators are honest by default, but randomly sample a fraction of their work, sometimes a synthetic "canary" job with a known-correct answer the operator can't distinguish from a real one, sometimes a real job re-run on a trusted reference machine, and compare results. A mismatch doesn't necessarily prove cheating on the first check (the reference machine itself could be flaky), so a confirmed mismatch typically escalates to an authoritative "referee" re-run before any penalty lands. Only a referee-confirmed mismatch triggers a slash (see Slashable Offence).
Where it comes from
The specific verification-game shape, dispute an off-chain computation via re-execution rather than checking every job, traces to Truebit's 2017 design, authored by Jason Teutsch and Christian Reitwiessner. General- purpose DePIN GPU networks, Akash Network (founded 2018 by Greg Osuri and Adam Bozanich) and io.net, apply variants of the same optimistic- verification-plus-slashing pattern to raw compute capacity. Gensyn (co-founded by Ben Fielding and Harry Grieve) applies it specifically to verifiable ML training and inference, with its "Verde" protocol pairing probabilistic spot-checking with a refereed dispute, the precedent Solidus's own design documentation cites by name. None of this is Solidus's invention.
Solidus status
Solidus built this for a specific, narrower purpose than a general compute marketplace: distributing the GPU inference workload behind its KYC pipeline (face embeddings, liveness checks) across vetted third-party operators instead of running it all on one Solidus-owned box. Solidus's own name for its approach is "trusted-optimistic," and it says plainly what that means: canaries, spot-checks, and referee re-runs are an economic-statistical deterrent, not a cryptographic guarantee. A patient, sufficiently well-resourced operator could in principle cheat below the sampling threshold. This runs on real, deployed code: a broker service that dispatches jobs, samples canaries, schedules spot-checks, and escalates confirmed mismatches to a slash, deployed and end-to-end tested on Solidus's public testnet with measured dispatch latency in the tens of milliseconds range for a co-located test run.
The honest gap: as of this writing, the live broker reports zero active registered operator nodes. The verification machinery has been proven against a deliberately-planted bad test node in a controlled run, not against a real, independent, adversarial operator processing real user traffic. The cryptographic alternative that removes the "trusted-optimistic" qualifier entirely, an attestation-gated confidential-compute tier, is fully specified but not built (see Trusted Execution Environment).
Proof you can run yourself: curl https://broker.solidus.network/health is live and public right now.
node.solidus.network/gpu is the public download page for the signed
compute-node binary. The canary, spot-check, and referee-escalation logic
is visible in source in the public solidusnetwork/protocol and gpu-node
repositories, backed by a public automated test suite anyone can run
locally.
Nereden geliyor
Bunu başkası belirtti. Solidus bir araya getiriyor.
"Verifiable off-chain compute" is the informal industry name for a now-common DePIN (Decentralized Physical Infrastructure Network) pattern: route heavy computation, AI inference, ML training, to independent operators running their own hardware, off the blockchain (running every job on-chain would be far too slow and expensive), while still giving a requester a way to trust the result without trusting any single operator. Real networks in this space include Akash Network (founded 2018 by Greg Osuri and Adam Bozanich) and io.net for general GPU compute, and Gensyn (co-founded by Ben Fielding and Harry Grieve) specifically for verifiable ML training and inference, whose "Verde" protocol pairs probabilistic spot-checking with a refereed dispute step, itself building on the "verification game" idea Truebit introduced in 2017 (Jason Teutsch and Christian Reitwiessner). Solidus did not invent this pattern; it composes the same optimistic-verification-plus-slashing approach, applied to its own KYC biometric inference workloads.
Bunu nasıl doğrularsınız
Test ağında çalışıyor. Ana ağda değil.
`curl https://broker.solidus.network/health` is live and publicly queryable right now (also reachable via node.solidus.network/gpu, the public download page for the compute-node binary). The verification logic itself, canary checks, spot-check tolerance comparison, and the referee-escalation path, is visible in source in the public solidusnetwork/protocol and gpu-node repositories, and is covered by a public automated test suite a stranger can run.