Omnichain state read
Read canonical state from 50+ chains through one call.
The problem
Reading state across chains normally means running an RPC node per chain, reconciling different finality models, and writing glue for every new corridor. The read path becomes the most fragile part of a multi-chain app.
How Switchboard does it
Switchboard normalizes source state on the Solana coordinator, so your contract or service issues one read against a single, consistent finality clock. Add a chain and the same read call covers it — no new integration code.
- ✓ One read surface across every supported chain.
- ✓ Consistent finality semantics instead of per-chain quirks.
- ✓ Adapters absorb encoding differences in the Core Engine.
Build omnichain state read on Switchboard.
Start with the quickstart, read the architecture, or talk to us about your workload.