mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 08:41:02 +00:00
9b685d5fc9
* [Bridges] Move chain definitions to separate folder (#3822)
Related to
https://github.com/paritytech/parity-bridges-common/issues/2538
This PR doesn't contain any functional changes.
The PR moves specific bridged chain definitions from
`bridges/primitives` to `bridges/chains` folder in order to facilitate
the migration of the `parity-bridges-repo` into `polkadot-sdk` as
discussed in https://hackmd.io/LprWjZ0bQXKpFeveYHIRXw?view
Apart from this it also includes some cosmetic changes to some
`Cargo.toml` files as a result of running `diener workspacify`.
(cherry picked from commit 0711729d25)
* diener workspacify
49 lines
2.1 KiB
Rust
49 lines
2.1 KiB
Rust
// 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 AssetHubRococo 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;
|
|
|
|
/// `AssetHubRococo` Runtime `Call` enum.
|
|
///
|
|
/// The enum represents a subset of possible `Call`s we can send to `AssetHubRococo` 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
|
|
/// `AssetHubRococo` `construct_runtime`, so that we maintain SCALE-compatibility.
|
|
#[allow(clippy::large_enum_variant)]
|
|
#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone, TypeInfo)]
|
|
pub enum Call {
|
|
/// `ToWestendXcmRouter` bridge pallet.
|
|
#[codec(index = 45)]
|
|
ToWestendXcmRouter(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);
|
|
}
|
|
|
|
/// Identifier of AssetHubRococo in the Rococo relay chain.
|
|
pub const ASSET_HUB_ROCOCO_PARACHAIN_ID: u32 = 1000;
|