- ---
External contract cyber ═══════════════ ═════ sends IBC query packet → receives query ↓ runs tri-kernel inference over matching subgraph ↓ generates zheng proof of correct computation ↓ receives response packet ← sends ranked particles
- zheng proof + proof + BBG state root
the external contract verifies the zheng proof on-chain (or via a pre-deployed verifier contract) and uses the result. the answer is a probabilistic oracle with on-chain provenance — a focus-weighted ranking across all linked particles, verifiable without trusting the node that computed it.
### what cyber exports
- cyberank per particle (with proof)
- karma per neuron (with proof)
- syntropy of the whole graph (with proof)
- namespace completeness proofs: "these are ALL cyberlinks matching your query"
- compiled transformer weights: model parameters derived from cybergraph structure (§6.6)
## bridge: bidirectional channels
### ICS-20 token transfers
standard Cosmos token transfers. $CYB moves to connected chains as IBC vouchers. external tokens move to cyber and can be used for staking or ICBS market positions. the token transfer preserves conservation: the sending chain escrows, the receiving chain mints a voucher. return transfers burn the voucher and release the escrow.
### cross-chain cyberlinks
a neuron on an external chain can create a cyberlink in the cybergraph via IBC. the link is authenticated by the neuron's signature on the external chain, relayed through the IBC channel, and verified against the external chain's state proof.
this means a neuron operating on Ethereum, Solana, or any IBC-connected chain can contribute knowledge to the cybergraph without running a cyber node. their links are weighted by their staked $CYB (transferred via ICS-20) and scored by Bayesian Truth Serum identically to native links.
### interchain accounts (ICS-27)
a neuron on cyber can control accounts on external chains through interchain accounts. this enables the protocol neuron (§23.1) to execute cross-chain operations: providing liquidity on external DEXes, participating in external governance, or bridging compiled model weights to chains that consume them.
## topology
┌─────────────┐
│ Cosmos │
│ Hub │
└──────┬──────┘
│ IBC
┌────────────────┼────────────────┐
│ │ │
┌──────┴──────┐ ┌──────┴──────┐ ┌──────┴──────┐
│ cyber │ │ Osmosis │ │ other │
│ (mainnet) │ │ (DEX) │ │ zones │
└──────┬──────┘ └─────────────┘ └─────────────┘
│
│ stark-verified channels
│
┌──────┴──────────────────────┐
│ high-security bridges │
│ (Ethereum, Solana, etc.) │
└─────────────────────────────┘
the Cosmos Hub serves as the IBC routing hub for standard channels. stark-verified channels connect directly to non-Cosmos chains where IBC light clients are unavailable or insufficient.
## security model
| threat | defense |
|---|---|
| counterparty validator collusion | stark-verified channels eliminate this for critical paths |
| relay censorship | any neuron can run an IBC relayer; relay fees incentivize availability |
| oracle manipulation | focus oracle returns are zheng-proven against the full cybergraph state |
| token inflation via bridge | ICS-20 conservation enforced by escrow/mint/burn mechanics |
| cross-chain replay | IBC packet sequence numbers prevent replay; each channel has monotonic counters |
## implementation path
phase 1 (inherited from bostrom): standard IBC with Tendermint light clients. ICS-20 token transfers. ICS-27 interchain accounts. operational today.
phase 2 (at launch): focus oracle channel. external contracts can query cyberank with proofs. stark verifier contracts deployed on target chains.
phase 3 (post-launch): stark-verified IBC channels for non-Cosmos chains. cross-chain cyberlinks. the protocol neuron operates cross-chain via interchain accounts.
see proofs for the stark proof taxonomy. see architecture for relay pricing. see ibc for the current operational IBC setup
discover all concepts