Demos
Working systems, not screenshots. Each demo runs against real infrastructure, shows its own source, and lets you drive it yourself.
How these contracts are tested →
-
ZK Escrow Explorer
An upgradeable escrow on Base Sepolia where funds move on a Groth16 zero-knowledge proof — the seller proves knowledge of a delivery secret without revealing it. Contested deliveries fall to an AI arbiter whose ruling and full reasoning land on-chain, verbatim.
-
RWA Tokenization Explorer
An ERC-3643-inspired real-world-asset token on Base Sepolia. Fractions of an asset trade as an ERC-20 whose every mint and transfer is gated on an on-chain KYC whitelist — a transfer to an unverified address is refused by the token itself, live and on-chain.
-
ZK KYC Pass Explorer
Privacy-preserving KYC for a tokenized asset on Base Sepolia. A holder proves a valid credential from an approved issuer in zero knowledge — no identity list is ever written on-chain — and the token refuses transfers to anyone who has not redeemed a proof.
-
Gas Optimization Race
The same contract deployed twice on Base Sepolia — once written the way most people write it, once optimized — with a compiler-enforced identical ABI and one test suite proving both behave the same. Race an operation against both in a single transaction and read the two gas figures out of the receipt.
-
Interest Rate Model Explorer
The kinked lending curve nearly every DeFi protocol uses, deployed to Base Sepolia with every parameter immutable — no owner, no setter, no upgrade path. Move utilization and watch the borrow and supply rates come back from live contract reads, with the kink marked. Eight invariants, fuzzed by three engines.
-
AI Parametric Insurance
A parametric policy on Base Sepolia whose claim is adjudicated by independent language models, each pinned and drawn from more than one vendor. The evidence hash is committed before any adjudicator is asked anything, so “the evidence was chosen after the answer” is a claim the chain refutes. Every verdict publishes the model, prompt and evidence hashes it answered to.
-
Oracle Health Explorer
Protocols rarely lose money because an oracle was attacked — they lose it because the consuming contract used a price that was stale, negative, or from a round that never finished. A contract on Base Sepolia reads live Chainlink feeds and names which, with the raw round data beside every verdict.
-
Deposit Dispute
A rental security deposit split line by line on Base Sepolia. Three pinned models, spanning more than one vendor, answer one question per deduction — did the landlord establish this on the evidence — and never name an amount. The amounts are fixed at deployment; the contract computes the split and its cap.
-
unselect2
Replaces the <select> but looks like and behaves like the <select>. There is no native control anywhere in the rendered page — a listbox handles every interaction and one hidden input per field is what posts. Native constraint validation is gone, and with JavaScript off there is no field at all.
-
WASM Keygrind
EVM vanity addresses ground out in your browser by Go compiled to WebAssembly. Keys are derived from the browser's own cryptographic random source and never leave the tab — pull the network cable mid-run and it keeps going. The page states the worker count it chose for your device, and why.
-
Backpressure Lab
A bounded queue pushed past its own capacity, simulated in Go and streamed to the page ten times a second. The same load meets three different answers to a full queue — make the producer wait, refuse the arrival, or discard the oldest item — and each charges a visibly different cost.
-
Aegean Placement
Where to put supply depots among twenty real Aegean ports, solved two ways in your browser. Max-coverage greedy is submodular, so it is proven to reach 1 − 1/e of the optimum; the p-median heuristic beside it carries no guarantee at all — and up to four depots the page checks both against an exhaustive search.
-
pprof Lab
Recorded Go profiles of the backpressure lab's queue, compared two captures at a time. Under the blocking policy the block profiler attributes the producer's stall to a named function — and the CPU profile of that same run is nearly empty, because the workers sleep rather than spin. Both are shown.
-
Reconcile Lab
A Kubernetes-style reconcile loop and a competing writer reaching for the same object. Every write carries the version it was read at, so the loser is rejected — and the only thing this page varies is what the loop does next. Retry at once, retry with backoff, or wait for the next full pass. Each pays in a different currency.
-
Orbit Lab
An SGP4 propagator compiled to WebAssembly, running a thousand objects a frame in your browser. Drag the globe, scrub time, watch the day/night terminator move. A staged conjunction sieve throws pairs away in three passes — and runs the exhaustive all-pairs search beside it, so you can see the two agree.
-
Cosmos Lab
A signed header and two chained ICS-23 proofs, captured from a public Cosmos test network at one height and replayed offline. Watch the verifier accept the real bytes, then refuse a single flipped bit — and see why three of five validators fail where two succeed: the threshold is two thirds of voting power, not of heads.
-
Goroutine Visualizer
Real goroutines and real channels, running on the server and drawn as they block. Park one on a bare channel send, press kill, and watch nothing happen — a canceled context is not something that operation can see. Rebuild the same worker with a select arm on
ctx.Done()and it dies instantly.