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.
Add Rococo<>Westend bridge support/relay (paritytech#2647)
* Added Rococo<>Westend primitives * Latest fashion * WIP * Temporary hack for AssetHubWestend to Millau * typo * tool/runtime-codegen tweaks * Rococo<>Westend relay part * zepter * Unify `Parachain` vs `Parachains`
- Loading branch information
Showing
46 changed files
with
8,277 additions
and
99 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
[package] | ||
name = "bp-asset-hub-westend" | ||
description = "Primitives of AssetHubWestend parachain runtime." | ||
version = "0.1.0" | ||
authors.workspace = true | ||
edition.workspace = true | ||
license = "GPL-3.0-or-later WITH Classpath-exception-2.0" | ||
|
||
[dependencies] | ||
codec = { package = "parity-scale-codec", version = "3.1.5", default-features = false } | ||
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] } | ||
|
||
# Substrate Dependencies | ||
frame-support = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master", default-features = false } | ||
|
||
# Bridge Dependencies | ||
bp-xcm-bridge-hub-router = { path = "../xcm-bridge-hub-router", default-features = false } | ||
|
||
[features] | ||
default = [ "std" ] | ||
std = [ | ||
"bp-xcm-bridge-hub-router/std", | ||
"codec/std", | ||
"frame-support/std", | ||
"scale-info/std", | ||
] |
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 (C) 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/>. | ||
|
||
//! Module with configuration which reflects AssetHubWestend runtime setup. | ||
|
||
#![cfg_attr(not(feature = "std"), no_std)] | ||
|
||
use codec::{Decode, Encode}; | ||
use scale_info::TypeInfo; | ||
|
||
pub use bp_xcm_bridge_hub_router::XcmBridgeHubRouterCall; | ||
|
||
/// `AssetHubWestend` Runtime `Call` enum. | ||
/// | ||
/// The enum represents a subset of possible `Call`s we can send to `AssetHubWestend` chain. | ||
/// Ideally this code would be auto-generated from metadata, because we want to | ||
/// avoid depending directly on the ENTIRE runtime just to get the encoding of `Dispatchable`s. | ||
/// | ||
/// All entries here (like pretty much in the entire file) must be kept in sync with | ||
/// `AssetHubWestend` `construct_runtime`, so that we maintain SCALE-compatibility. | ||
#[allow(clippy::large_enum_variant)] | ||
#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone, TypeInfo)] | ||
pub enum Call { | ||
/// `ToRococoXcmRouter` bridge pallet. | ||
#[codec(index = 34)] | ||
ToRococoXcmRouter(XcmBridgeHubRouterCall), | ||
} | ||
|
||
frame_support::parameter_types! { | ||
/// Some sane weight to execute `xcm::Transact(pallet-xcm-bridge-hub-router::Call::report_bridge_status)`. | ||
pub const XcmBridgeHubRouterTransactCallMaxWeight: frame_support::weights::Weight = frame_support::weights::Weight::from_parts(200_000_000, 6144); | ||
|
||
/// Base delivery fee to `BridgeHubWestend`. | ||
/// (initially was calculated by test `BridgeHubWestend::can_calculate_weight_for_paid_export_message_with_reserve_transfer` + `33%`) | ||
pub const BridgeHubWestendBaseFeeInWocs: u128 = 1624803349; | ||
} | ||
|
||
/// Identifier of AssetHubWestend in the Westend relay chain. | ||
pub const ASSET_HUB_WESTEND_PARACHAIN_ID: u32 = 1000; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
[package] | ||
name = "bp-bridge-hub-westend" | ||
description = "Primitives of BridgeHubWestend parachain runtime." | ||
version = "0.1.0" | ||
authors.workspace = true | ||
edition.workspace = true | ||
license = "GPL-3.0-or-later WITH Classpath-exception-2.0" | ||
|
||
[dependencies] | ||
|
||
# Bridge Dependencies | ||
|
||
bp-bridge-hub-cumulus = { path = "../chain-bridge-hub-cumulus", default-features = false } | ||
bp-runtime = { path = "../../primitives/runtime", default-features = false } | ||
bp-messages = { path = "../../primitives/messages", default-features = false } | ||
|
||
# Substrate Based Dependencies | ||
|
||
frame-support = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master", default-features = false } | ||
sp-api = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master", default-features = false } | ||
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master", default-features = false } | ||
sp-std = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master", default-features = false } | ||
|
||
[features] | ||
default = [ "std" ] | ||
std = [ | ||
"bp-bridge-hub-cumulus/std", | ||
"bp-messages/std", | ||
"bp-runtime/std", | ||
"frame-support/std", | ||
"sp-api/std", | ||
"sp-runtime/std", | ||
"sp-std/std", | ||
] |
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,75 @@ | ||
// Copyright (C) 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/>. | ||
|
||
//! Module with configuration which reflects BridgeHubWestend runtime setup | ||
//! (AccountId, Headers, Hashes...) | ||
|
||
#![cfg_attr(not(feature = "std"), no_std)] | ||
|
||
pub use bp_bridge_hub_cumulus::*; | ||
use bp_messages::*; | ||
use bp_runtime::{ | ||
decl_bridge_finality_runtime_apis, decl_bridge_messages_runtime_apis, Chain, Parachain, | ||
}; | ||
use frame_support::dispatch::DispatchClass; | ||
use sp_runtime::RuntimeDebug; | ||
|
||
/// BridgeHubWestend parachain. | ||
#[derive(RuntimeDebug)] | ||
pub struct BridgeHubWestend; | ||
|
||
impl Chain for BridgeHubWestend { | ||
type BlockNumber = BlockNumber; | ||
type Hash = Hash; | ||
type Hasher = Hasher; | ||
type Header = Header; | ||
|
||
type AccountId = AccountId; | ||
type Balance = Balance; | ||
type Nonce = Nonce; | ||
type Signature = Signature; | ||
|
||
fn max_extrinsic_size() -> u32 { | ||
*BlockLength::get().max.get(DispatchClass::Normal) | ||
} | ||
|
||
fn max_extrinsic_weight() -> Weight { | ||
BlockWeights::get() | ||
.get(DispatchClass::Normal) | ||
.max_extrinsic | ||
.unwrap_or(Weight::MAX) | ||
} | ||
} | ||
|
||
impl Parachain for BridgeHubWestend { | ||
const PARACHAIN_ID: u32 = BRIDGE_HUB_WESTEND_PARACHAIN_ID; | ||
} | ||
|
||
/// Identifier of BridgeHubWestend in the Westend relay chain. | ||
pub const BRIDGE_HUB_WESTEND_PARACHAIN_ID: u32 = 1002; | ||
|
||
/// Name of the With-BridgeHubWestend messages pallet instance that is deployed at bridged chains. | ||
pub const WITH_BRIDGE_HUB_WESTEND_MESSAGES_PALLET_NAME: &str = "BridgeWestendMessages"; | ||
|
||
/// Name of the With-BridgeHubWestend bridge-relayers pallet instance that is deployed at bridged | ||
/// chains. | ||
pub const WITH_BRIDGE_HUB_WESTEND_RELAYERS_PALLET_NAME: &str = "BridgeRelayers"; | ||
|
||
/// Pallet index of `BridgeRococoMessages: pallet_bridge_messages::<Instance1>`. | ||
pub const WITH_BRIDGE_WESTEND_TO_ROCOCO_MESSAGES_PALLET_INDEX: u8 = 44; | ||
|
||
decl_bridge_finality_runtime_apis!(bridge_hub_westend); | ||
decl_bridge_messages_runtime_apis!(bridge_hub_westend); |
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
Oops, something went wrong.