Architecture
The Connext protocol is composed of a set of smart contracts and offchain agents.
Smart Contracts
Connext's smart contracts are the interfaces between the protocol and the wide gamut of different users in the ecosystem. There are contracts for handling xcall, managing asset registration, and provisioning liquidity for routers and stableswap LPs.
The full contract stack consists of the following components.
Connext
Dispatches and handles messages related to sending funds across chains. Custodies funds for canonical assets, fast liquidity, and stable swaps.
The Connext contract uses the Diamond pattern so it comprises a set of Facets that act as logical boundaries for groups of functions. Facets share contract storage and can be upgraded separately.
Messaging
The various contracts required to manage merkle roots containing hashed transfer data and send them through a hub-and-spoke architecture. The messaging architecture includes:
Connector. A connector is an abstraction around an underlying transport layer. The
IConnectorinterface requires aprocessMessagemethod implemented for handling incoming messages.Connectoris an abstract contract that is inherited by the following contracts:SpokeConnector. The
SpokeConnectoris deployed on spoke domains and implements asendmethod to send the Merkle root of all the messages that originate from the spoke domain to the hub domain. For example,ArbitrumSpokeConnectoris deployed on the Arbitrum L2.HubConnector. The
HubConnectoris deployed on hub domains for each spoke and implements asendMessagemethod to send the aggregated Merkle root of all the received spoke Merkle roots to the configured destination domain. For exampleArbitrumHubConnectoris deployed on Ethereum L1.
Offchain Agents
Routers
Routers are liquidity providers that enable instant liquidity for the user on the destination chain in return for a fee. Anybody can participate in the protocol as a router and there is no minimum liquidity required! Routers provide a crucial service to the Connext protocol.
Learn how to run one in the Routers section.
Sequencer
The sequencer collects bids from all chains and randomly selects router(s) to fulfill them. Any number of routers can fulfill a single transaction, which is especially useful for large transfers. The sequencer will post batches of these bids to a relayer network to submit them to chain.
Relayers
Relayers are a decentralized network of infrastructure operators that can execute smart contract transactions on behalf of a user in exchange for a small fee. Because the last leg of a cross-chain transaction requires execution on the destination domain, relayers play an important role in completing the full flow.
We are currently using Gelato as our relayer service.
Last updated