This is a collection of components for building bridges.
These components include Substrate pallets for syncing headers, passing arbitrary messages, as well as libraries for building relayers to provide cross-chain communication capabilities.
Three bridge nodes are also available. The nodes can be used to run test networks which bridge other Substrate chains.
π§ The bridges are currently under construction - a hardhat is recommended beyond this point π§
- Installation
- High-Level Architecture
- Project Layout
- Running the Bridge
- How to send a message
- Community
To get up and running you need both stable and nightly Rust. Rust nightly is used to build the Web Assembly (WASM) runtime for the node. You can configure the WASM support as so:
rustup install nightly
rustup target add wasm32-unknown-unknown --toolchain nightly
Once this is configured you can build and test the repo as follows:
git clone https://github.com/paritytech/parity-bridges-common.git
cd parity-bridges-common
cargo build --all
cargo test --all
Also you can build the repo with Parity CI Docker image:
docker pull paritytech/ci-unified:bullseye-1.77.0-2024-04-10-v20240408
mkdir ~/cache
chown 1000:1000 ~/cache #processes in the container runs as "nonroot" user with UID 1000
docker run --rm -it -w /shellhere/parity-bridges-common \
-v /home/$(whoami)/cache/:/cache/ \
-v "$(pwd)":/shellhere/parity-bridges-common \
-e CARGO_HOME=/cache/cargo/ \
-e SCCACHE_DIR=/cache/sccache/ \
-e CARGO_TARGET_DIR=/cache/target/ paritytech/ci-unified:bullseye-1.77.0-2024-04-10-v20240408 cargo build --all
#artifacts can be found in ~/cache/target
If you want to reproduce other steps of CI process you can use the following guide.
If you need more information about setting up your development environment Substrate's Installation page is a good resource.
This repo has support for bridging foreign chains together using a combination of Substrate pallets and external processes called relayers. A bridge chain is one that is able to follow the consensus of a foreign chain independently. For example, consider the case below where we want to bridge two Substrate based chains.
+---------------+ +---------------+
| | | |
| Rococo | | Westend |
| | | |
+-------+-------+ +-------+-------+
^ ^
| +---------------+ |
| | | |
+-----> | Bridge Relay | <-------+
| |
+---------------+
The Rococo chain must be able to accept Westend headers and verify their integrity. It does this by using a runtime module designed to track GRANDPA finality. Since two blockchains can't interact directly they need an external service, called a relayer, to communicate. The relayer will subscribe to new Rococo headers via RPC and submit them to the Westend chain for verification.
Take a look at Bridge High Level Documentation for more in-depth description of the bridge interaction.
Here's an overview of how the project is laid out. The main bits are the bin
, which is the actual "blockchain", the
modules
which are used to build the blockchain's logic (a.k.a the runtime) and the relays
which are used to pass
messages between chains.
βββ modules // Substrate Runtime Modules (a.k.a Pallets)
β βββ beefy // On-Chain BEEFY Light Client (in progress)
β βββ grandpa // On-Chain GRANDPA Light Client
β βββ messages // Cross Chain Message Passing
β βββ parachains // On-Chain Parachains Light Client
β βββ relayers // Relayer Rewards Registry
β βββ xcm-bridge-hub // Multiple Dynamic Bridges Support
β βββ xcm-bridge-hub-router // XCM Router that may be used to Connect to XCM Bridge Hub
βββ primitives // Code shared between modules, runtimes, and relays
β βββ ...
βββ relays // Application for sending finality proofs and messages between chains
β βββ ...
βββ scripts // Useful development and maintenance scripts
Apart from live Rococo <> Westend bridge, you may spin up local networks and test see how it works locally. More details may be found in this document.