The Anti-SWIFT.
Hylaq Rail picks one rail per settlement. The Settlement Grid picks the cheapest path across rails, currencies, and geos — and commits the whole journey atomically. USD bank pay-in → EUR IBAN pay-out as a single quote. ~$5T/day moves across SWIFT alone, with 1–5 day settlement and 0.5–7% fees. The world pays a $300B/yr fragmentation tax. The Grid is how that ends.
The paradigm break
Money movement looks like a banking problem. It's actually a unit-conversion graph. Every payment is a path through nodes shaped like (currency, geo, custody) connected by edges that are either rails (FedNow, SEPA, SWIFT…) or FX swaps. The cheapest path is a Dijkstra query.
Until now nobody had identity (Hylaq), atomic settlement (Loadit), and an intelligent router (HQ) on the same plane. With those three, the graph becomes a one-line API: quote, execute, receipt. The Settlement Grid is that API.
What we replace
Five paths. One protocol.
How the protocol thinks
The 40-year arc
- Years 1–3Diaspora corridorsOne corridor at a time (US ↔ MX, EU ↔ NG, UK ↔ IN). 30 bps total cost beats Wise. ~$5B/yr routed.
- Years 4–7SMB cross-borderStripe + Adyen become fallback rails. The Grid is the default destination for any merchant taking international payments. ~$300B/yr.
- Years 8–12Corporate treasuryCFOs query the Grid before they call BNY. Corporate cross-border treasury volume migrates. ~$10T/yr.
- Years 13–20Central banksBilateral CBDC settlement runs on the Grid. SWIFT replacement RFPs name it. ~$100T/yr.
- Years 20–40The plumbing of the worldThe Grid is invisible — it's how every cross-border payment moves. SWIFT is on life support. The $300B/yr fragmentation tax is gone.
Shipped today
- src/lib/settlement-grid/ — types, fx-rates (18 currencies), corridors graph, Dijkstra pathfinder, quote builder, in-memory liquidity meter, atomic execute with commit/rollback, multi-hop signed receipts, quote cache, BigInt-safe wire serialize
- 3 API routes — POST /api/settlement/quote, POST /api/settlement/execute, GET /api/settlement/health
- Multi-hop pathfinder — Dijkstra over (currency × geo × custody) graph, ranked by USD-cents cost + reliability + latency
- Atomic execution — commit per hop with stub adapters; on failure, compensates every prior hop in reverse and unwinds liquidity reservations
- Hash-chained multi-hop receipt — sha256(canonicalize(header) || hashChain(outcomes)); verifyReceipt() works offline
- Jest unit tests — same-currency same-geo, same-currency cross-geo, cross-currency with FX, end-to-end settle + verify, COMPENSATED on hop failure
- Phase-2 swap points called out — replace USD_RATES with live provider, swap stub adapters for real per-rail providers (Increase, Stripe, Wise), persist to Postgres, replace meter with Redis
One quote. One execute. One receipt. Anywhere on Earth.
The world burns $300B/yr moving its own money around. The Settlement Grid replaces that with a single API call — and the HQ Compute Mesh is already its first internal customer.