| Authors | Dong, Mo; Mo, Junda; Li, Xiaozhou; Geng, Yue |
|---|---|
| Year | 2018 |
| Project | Celer Network |
| License | MIT |
| Official Source | https://www.celer.network/doc/CelerNetwork-Whitepaper.pdf |
This page is an educational summary and analysis of an official whitepaper or technical paper, written for reference purposes. It is not a verbatim reproduction. CryptoGloss does not claim authorship of the original work. All intellectual property rights remain with the original author(s). The official document is linked above.
Celer Network is an off-chain scaling and cross-chain interoperability protocol described in a 2018 whitepaper by Mo Dong, Junda Mo, Xiaozhou Li, and Yue Geng, all holding PhDs from UIUC and MIT. The original whitepaper focuses on generalized state channels — cryptographic protocols allowing two parties to conduct many off-chain interactions (payments, game moves, contract state updates) with only the opening and closing transactions recorded on-chain.
Celer’s product footprint expanded significantly post-2020:
- cBridge: A cross-chain liquidity bridge enabling fast asset transfers between EVM chains
- Celer IM (Inter-chain Messaging): A framework for cross-chain smart contract calls
> Whitepaper (PDF): celer.network/doc/CelerNetwork-Whitepaper.pdf
Publication and Context
Celer raised $30M in a Binance Launchpad IEO in May 2018. The founding team had academic backgrounds in distributed systems and networking with real credentials (doctoral degrees from top institutions).
The original 2018 whitepaper was written when state channels were the dominant off-chain scaling paradigm — the Lightning Network had launched for Bitcoin (2018), and the Raiden Network for Ethereum was in development. The general state channel concept extends payment channels to any two-party off-chain computation.
By 2021, the scaling narrative had shifted to rollups (Optimism, Arbitrum) and cross-chain bridges. Celer adapted: cBridge (launched 2021) was not in the 2018 whitepaper but became Celer’s primary product.
Generalized State Channels (Original Design)
State Channel Primitives
A state channel is a two-party off-chain protocol:
- Open: Both parties deposit funds into a multi-sig contract on-chain (channel opening transaction)
- Off-chain operation: Both parties exchange signed state updates off-chain (at network speed, not blockchain speed)
- Close: The latest mutually-signed state is submitted on-chain; funds are distributed accordingly
Generalization: While payment channels only track balances, generalized state channels can track any state — game boards, option contracts, any two-party computation — making the entire computation off-chain with only opening/closing on-chain.
CelerPay and CelerApp
CelerPay: The payment channel network layer — routing payments through a network of channels (similar to Lightning Network’s routing)
CelerApp: A framework for generalized state channel applications (dApp state channels)
Multi-Hop Routing
Single state channels connect only two parties. For multi-party state channel networks, conditional payments route through intermediaries:
Alice —→ Relay1 —→ Relay2 —→ Bob
Each hop is conditioned on the next: Alice’s payment to Relay1 is only valid if Relay1 completes payment to Relay2, and so on. This is identical to Lightning Network’s HTLC (Hash Time-Locked Contract) routing.
State Guardian Network (SGN)
A critical challenge for state channels: if Alice goes offline, Bob might submit an outdated state (favorable to Bob) to the on-chain contract. Normal state channels require users to monitor the chain constantly.
The State Guardian Network (SGN) is Celer’s solution: a sidechain of CELR-staking validators that:
- Monitor state channels on behalf of users
- Dispute invalid state submissions on behalf of offline users
- Store the latest channel state and can submit it if needed
Validators earn fees for this monitoring service and are slashed if they fail to dispute invalid states they should have caught.
cBridge: Cross-Chain Liquidity
cBridge (2021) is Celer’s cross-chain bridge using a liquidity relay model:
- User wants to transfer USDC from Ethereum to Polygon
- User sends USDC to cBridge contract on Ethereum (locking)
- A liquidity provider (relay) fronts USDC on Polygon immediately
- cBridge contract on Ethereum releases locked funds to the relay (minus fee)
- User receives USDC on Polygon near-instantly
This is a lock-and-mint on demand with LP fronting model — similar to Across Protocol’s bonder mechanism. Speed comes from the relay’s immediate fronting; security comes from the cBridge contracts.
Liquidity pools: Relays need capital on each chain. cBridge manages multi-chain liquidity pools allowing anyone to provide liquidity and earn fees.
Celer IM (Inter-chain Messaging)
Celer IM (2022) is an advanced cross-chain messaging layer:
- Smart contract on Chain A can call a smart contract on Chain B
- Guardians on the SGN verify the source-chain event and sign an attestation
- The attestation is submitted to Chain B, triggering the target contract
This is similar to LayerZero’s Oracle+Relayer model or Axelar’s Gateway+Relayer architecture. The security assumption is that a majority of SGN validators are honest.
Use cases: Cross-chain governance votes, cross-chain yield strategies, multi-chain NFT minting.
Key Technical Properties
| Property | Value |
|---|---|
| Original design | Generalized state channels |
| Channel monitoring | State Guardian Network (SGN) |
| Bridge model | cBridge (liquidity relay) |
| Cross-chain messaging | Celer IM (message bus) |
| Security model | SGN validator majority honesty |
| Token | CELR |
| Mainnet | State channels (2019); cBridge v2 (2021) |
Reality Check
Celer’s original state channel vision largely did not materialize — the scaling narrative moved to rollups, which provide better UX without requiring users to lock funds into channels or stay online.
cBridge achieved genuine adoption as a cross-chain bridge, particularly during the 2021–2022 EVM multi-chain expansion. However:
- Celer IM security model: The SGN validator set is a trusted group; cross-chain messaging security depends on validator set honesty, similar to other trusted-relayer models
- Bridge competition: cBridge competes with Across, Stargate, LayerZero, Synapse, and many others; market share is fragmented
- State channel pivot: The gap between the 2018 whitepaper’s state channel focus and the actual 2021+ product (cBridge) is substantial — investors in the 2018 IEO bought into a different product than what shipped
Legacy
Celer’s original whitepaper contributed to generalized state channel theory and the multi-hop routing literature. The SGN model for channel monitoring influenced thinking about watchtower economics. cBridge’s liquidity relay model was an important step in bridge design evolution, predating EIP-3074 and intent-based bridge designs.
Related Terms
- State Channels
- Cross-Chain Bridge
- Inter-chain Messaging
- LayerZero Whitepaper
- Across Protocol Whitepaper
Research
- Dong, M., Mo, J., Li, X., & Geng, Y. (2018). Celer Network: Bring Internet Scale to Every Blockchain. celer.network.
— Primary whitepaper; describes CelerPay state channel routing, CelerApp generalized channels, and the State Guardian Network.
- Poon, J., & Dryja, T. (2016). The Bitcoin Lightning Network: Scalable Off-Chain Instant Payments. lightning.network.
— Lightning Network payment channels; the conceptual predecessor to Celer’s state channel network with multi-hop HTLC routing.
- Miller, A., Bentov, I., Bakshi, S., Kumaresan, R., & McCorry, P. (2019). Sprites and State Channels: Payment Networks that Go Faster than Lightning. WWW 2019.
— Sprites protocol; academic advancement on Lightning/Raiden that reduces collateral lockup in multi-hop channels; contemporaneous with Celer’s design.