🟧Symbiosis BridgeV2 Contract

Symbiosis core smart contracts: BridgeV2 contract as a proxy between Synthesis/Portal contracts and the Symbiosis realayer network.

In the previous article: Symbiosis Mint-Burn Process, we explained the core idea of cross-chain operations:

  • Whenever Portal locks tokens on one blockchain -> Synthesis mints tokens on another blockchain.

  • Whenever Synthesis burns tokens on one blockchain -> Portal releases tokens on another blockchain.

Let's take a closer look at the BridgeV2 contract.

An instance of the BridgeV2 contract is deployed on each blockchain supported by Symbiosis and acts as a proxy between relayers and Portal/Synthesis contracts.

BridgeV2 accepts calls from:

  1. The Portal/Synthesis contracts locked on the same blockchain When BridgeV2 is invoked by these contracts, it issues an Oracle request (an event in terms of smart contracts) that contains all the necessary data and instructions to accomplish the operation on the corresponding destination blockchain.

  2. Relayers: transactions signed with an MPC key, the MPC address for this key is stored in the BridgeV2 contract. When BridgeV2 is invoked by such a transaction, the instructions from the transaction calldata get executed on the blockchain.

Scheme 1 below shows the BridgeV2 routine during cross-chain operations:

In addition, Portal/Synthesis sends cross-chain fees collected from users to BridgeV2. More information about fee collection can be found here: Gas Fees for Cross-chain Operations via Symbiosis.

About relayers. The Symbiosis relayers network is an off-chain part of the Symbiosis protocol. The main purpose of the network is to provide fast, accurate, and secure transfer of information about cross-chain operations conducted via the Symbiosis protocol. See Symbiosis Relayers Network for more details.

Last updated