mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 12:11:02 +00:00
e0b42dfae7
* Adjustments for the xcm messages sending logic Signed-off-by: Serban Iorga <serban@parity.io> * Deduplicate XCM destination Signed-off-by: Serban Iorga <serban@parity.io> * [send_message] small changes Signed-off-by: Serban Iorga <serban@parity.io> * Define CustomNetworkId Right now we use some associations between Rialto, RialtoParachain and Millau chains and chains defined in the NetworkId enum. But if we are not carreful we might do mistakes like: In Millau: pub const ThisNetwork: NetworkId = Kusama; pub const RialtoNetwork: NetworkId = Polkadot; In Rialto: pub const ThisNetwork: NetworkId = Kusama; pub const MillauNetwork: NetworkId = Polkadot; We're introducing CustomNetworkId to have a centralized mapping between NetworkId chains and our custom chains. Signed-off-by: Serban Iorga <serban@parity.io> * Revert "Deduplicate XCM destination" This reverts commit 3a0a950e1d7484e3ecac45f5c00b152f0485cd11. Signed-off-by: Serban Iorga <serban@parity.io>
85 lines
2.5 KiB
Rust
85 lines
2.5 KiB
Rust
// 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/>.
|
|
|
|
//! Rialto chain specification for CLI.
|
|
|
|
use crate::cli::{
|
|
bridge,
|
|
encode_message::{CliEncodeMessage, RawMessage},
|
|
CliChain,
|
|
};
|
|
use bp_messages::LaneId;
|
|
use bp_runtime::EncodedOrDecodedCall;
|
|
use relay_rialto_client::Rialto;
|
|
use relay_substrate_client::BalanceOf;
|
|
use sp_version::RuntimeVersion;
|
|
use xcm::latest::prelude::*;
|
|
|
|
impl CliEncodeMessage for Rialto {
|
|
fn encode_send_xcm(
|
|
message: xcm::VersionedXcm<()>,
|
|
bridge_instance_index: u8,
|
|
) -> anyhow::Result<EncodedOrDecodedCall<Self::Call>> {
|
|
let dest = match bridge_instance_index {
|
|
bridge::RIALTO_TO_MILLAU_INDEX =>
|
|
(Parent, X1(GlobalConsensus(rialto_runtime::xcm_config::MillauNetwork::get()))),
|
|
_ => anyhow::bail!(
|
|
"Unsupported target bridge pallet with instance index: {}",
|
|
bridge_instance_index
|
|
),
|
|
};
|
|
|
|
Ok(rialto_runtime::Call::XcmPallet(rialto_runtime::XcmCall::send {
|
|
dest: Box::new(dest.into()),
|
|
message: Box::new(message),
|
|
})
|
|
.into())
|
|
}
|
|
|
|
fn encode_send_message_call(
|
|
lane: LaneId,
|
|
payload: RawMessage,
|
|
fee: BalanceOf<Self>,
|
|
bridge_instance_index: u8,
|
|
) -> anyhow::Result<EncodedOrDecodedCall<Self::Call>> {
|
|
Ok(match bridge_instance_index {
|
|
bridge::RIALTO_TO_MILLAU_INDEX => rialto_runtime::Call::BridgeMillauMessages(
|
|
rialto_runtime::MessagesCall::send_message {
|
|
lane_id: lane,
|
|
payload,
|
|
delivery_and_dispatch_fee: fee,
|
|
},
|
|
)
|
|
.into(),
|
|
_ => anyhow::bail!(
|
|
"Unsupported target bridge pallet with instance index: {}",
|
|
bridge_instance_index
|
|
),
|
|
})
|
|
}
|
|
}
|
|
|
|
impl CliChain for Rialto {
|
|
const RUNTIME_VERSION: RuntimeVersion = rialto_runtime::VERSION;
|
|
|
|
type KeyPair = sp_core::sr25519::Pair;
|
|
type MessagePayload = Vec<u8>;
|
|
|
|
fn ss58_format() -> u16 {
|
|
rialto_runtime::SS58Prefix::get() as u16
|
|
}
|
|
}
|