Skip to content

Send Cross-Chain Messages through Multiple Bridges

License

Notifications You must be signed in to change notification settings

gator-boi/multibridge

 
 

Repository files navigation

Multi-Message Aggregation (MMA) Design

For latest GitBook, you can find it here: https://multi-message-aggregation.gitbook.io/multi-message-aggregation/

A World with MMA

Introduction

Multi-Message Aggregation (MMA) is an additive security module for cross-chain communication. It utilizes multiple Arbitrary Messaging Bridges (AMB) to send messages from one EVM chain to another EVM chain.

Instead of relying on a single AMB, MMA allows the message sender to relay the message through multiple AMBs. This way, even if one AMB is exploited, no malicious actions can be executed on the destination chain.

Features

Core MMA architecture

  • Minimized feature sets: barebore implementation, low level of complexity.
  • Configurable: during deployment, individual project can configure their own parameters to fit their specific use case and risk tolerance.

Adapter

  • Standardization: Implements EIP-5164 for all APIs on the sending and receiving end.
  • Industry buyin: currently more than SIX bridge providers have their adapters for MMA.

Workflow for crosschain governance

Assume, we use 3 bridges to relay governance message from Ethereum mainnet to a destination chain. (This number can be changed during actual deployment or via a later governance vote.)

On the destination chain, if 2 of the 3 AMB agree with each other, we would consider the message.

The flow of the message and how it is transformed and relayed is detailed below:

  1. Uniswap Ethereum governance structure, src, approves to execute a message msg on destination chain dst.
  2. Uniswap governance sends msg to MultiMessageSender.
  3. MultiMessageSender relays msg to different adapters adapter.
  4. adapter encodes msg into the corresponding formatted message, formatted_msg, and sends it to the hardcoded AMB contracts AMB.
  5. Each AMB independently carries formatted_msg to dst.
  6. On the destination chain, another set of adapters decodes formatted_msgs into the original msg.
  7. msg is collected inside the MultiMessageReceiver contract.
  8. If 2 out of 3 msg is the same, the msg will be executed on dst.

Illustration of

Development

Installation

npm i

Compile

npx hardhat compile

Run test

We use Hardhat to test MultiMessageSender and MultiMessageReceiver contracts on simple behaviors.

npx hardhat test

Contribution guidelines

Thank you for your interest in contributing to MMA! We welcome all contributions to make our project better!

Before you start

Before you start contributing to the project, please make sure you have read and understood the project's Gitbook documentation. If you have any questions, drop Kydo a DM on Twitter.

How to contribute

Reporting bugs and issues

If you find any bugs or issues with the project, please create a GitHub issue and include as much detail as possible.

Code contribution

If you want to contribute code to the project, please follow these guidelines:

  1. Fork the project repository and clone it to your local machine.
  2. Create a new branch for your changes.
  3. Make your changes and test them thoroughly.
  4. Ensure that your changes are well-documented.
  5. Create a pull request and explain your changes in detail.
  6. Code review
  7. All code changes will be reviewed by the project maintainers. The maintainers may ask for additional changes, and once the changes have been approved, they will be merged into the main branch.

Testing

All code changes must be thoroughly tested. Please ensure that your tests cover all new functionality and edge cases.

Contracts

contracts
├── MessageStruct.sol
├── MultiMessageReceiver.sol
├── MultiMessageSender.sol
├── interfaces
│   ├── EIP5164
│   │   ├── ExecutorAware.sol
│   │   ├── MessageDispatcher.sol
│   │   ├── MessageExecutor.sol
│   │   └── SingleMessageDispatcher.sol
│   ├── IBridgeReceiverAdapter.sol
│   ├── IBridgeSenderAdapter.sol
│   └── IMultiMessageReceiver.sol
├── adapters
│   ├── Celer
│   ├── Hyperlane
│   ├── Telepathy
│   ├── Wormhole
│   ├── base
│   ├── debridge
│   └── router
└── mock

License

By contributing to the project, you agree that your contributions will be licensed under the project's LICENSE.

About

Send Cross-Chain Messages through Multiple Bridges

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Solidity 84.1%
  • TypeScript 15.0%
  • JavaScript 0.9%