forked from paritytech/polkadot-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sync Westmint to Millau (paritytech#1482)
* sync Westmint to Millau * "Westend parachains at Millau" dashboard
- Loading branch information
Showing
7 changed files
with
160 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
bridges/relays/bin-substrate/src/chains/westend_parachains_to_millau.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
// Copyright 2019-2021 Parity Technologies (UK) Ltd. | ||
// This file is part of Parity Bridges Common. | ||
|
||
// Parity Bridges Common is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
|
||
// Parity Bridges Common is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
|
||
// You should have received a copy of the GNU General Public License | ||
// along with Parity Bridges Common. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
//! Westend-to-Millau parachains sync entrypoint. | ||
|
||
use parachains_relay::ParachainsPipeline; | ||
use relay_millau_client::Millau; | ||
use relay_westend_client::{Westend, Westmint}; | ||
use substrate_relay_helper::parachains::{ | ||
DirectSubmitParachainHeadsCallBuilder, SubstrateParachainsPipeline, | ||
}; | ||
|
||
/// Westend-to-Millau parachains sync description. | ||
#[derive(Clone, Debug)] | ||
pub struct WestendParachainsToMillau; | ||
|
||
impl ParachainsPipeline for WestendParachainsToMillau { | ||
type SourceChain = Westend; | ||
type TargetChain = Millau; | ||
} | ||
|
||
impl SubstrateParachainsPipeline for WestendParachainsToMillau { | ||
type SourceParachain = Westmint; | ||
type SourceRelayChain = Westend; | ||
type TargetChain = Millau; | ||
|
||
type SubmitParachainHeadsCallBuilder = WestendParachainsToMillauSubmitParachainHeadsCallBuilder; | ||
type TransactionSignScheme = Millau; | ||
|
||
const SOURCE_PARACHAIN_PARA_ID: u32 = bp_westend::WESTMINT_PARACHAIN_ID; | ||
} | ||
|
||
/// `submit_parachain_heads` call builder for Rialto-to-Millau parachains sync pipeline. | ||
pub type WestendParachainsToMillauSubmitParachainHeadsCallBuilder = | ||
DirectSubmitParachainHeadsCallBuilder< | ||
WestendParachainsToMillau, | ||
millau_runtime::Runtime, | ||
millau_runtime::WithWestendParachainsInstance, | ||
>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters