mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-04 15:07:23 +00:00
4c7539cab5
* Use beefy branch with scale-info * Add patches * Sprinkle some TypeInfo derives * Add some TypeInfo deriv * Cargo.lock * Derive TypeInfo and skip type params for Xcm types * Cargo.lock * Fix up scale_info bounds attributes * Fix up dependencies * Use my own beefy-primitives branch * Bump BEEFY * Update patches * Add some scale-info dependencies and TypeInfo derives * More TypeInfo decoration * Update scale-info * Some TypeInfos and remove more Event pallet::metadata * Moar TypeInfos * TypeInfos galore, fix up metadata runtime API * TypeInfo * TypeInfos, update other runtime metadata APIs * Fix up Kusama, comment out some `usize` QueueSize parameter types * Remove local diener patches * Cargo.lock * Cargo.lock * Update to scale-info crates.io release * Update primitive-types branch * Update pallet-beefy to use custom branch * Update other parity-common deps * Update parity-common patches * bump a bunch of deps in parity-common * Remove parity-common patches * Bump finality-grandpa version * Cargo.lock * Update scale-info to 0.9.1 * Add recursion_limit for runtime-parachains * Add some scale_info attributes * Cargo.lock * Revert finality-grandpa bump * Cargo.lock, scale-info update * cargo update * Make sure using patched version of finality-grandpa * Use patched scale-info * Update to scale-info 0.10.0 * Update finality-grandpa * Cargo.lock * Update beefy deps * Update beefy deps again * Add scale-info dependency * Remove deprecated pallet::metadata attributes. * Add some missing scale-info deps and derives * Use some variant struct call syntax * Add missing TypeInfo impl * Add some more TypeInfo impls * Convert some call enum struct variant constructors * More scale-info deps and derives * Call enum struct variants * TypeInfo derives * Call enum variant structs * scale-info deps and derives * Call enum variant struct constructors * Use beefy-primitives scale-info feature * Use grandpa-bridge-gadget master branch * Remove finality-grandpa patch * Add missing scale_info dependency and derive * Fix up some call variant constructors * Add missing scale_info dependency * Fix some test errors * More TypeInfo derives * More call variant structs * Call variant structs in tests * Cargo.lock * Fmt * Fix more call struct variants * Another call struct variant * add scale-info/std features explicitly * More call struct variants * Add missing scale-info dependency * Fmt * review: activate scale-info/std where missing * Remove some duplicate std feature activation * review: add scale_info bounds() attr * More call variant structs * Remove recursion limit * Update beefy-primitives * Update beefy-primitives * Fix simnet call variant struct errors * Fmt * cargo update -p beefy-primitives * Add some missing TypeInfo derives * Fix some call variants * Fix some call variant underscores * Cargo.lock * Cargo.lock * Add missing TypeInfo derive * Add some more missing TypeInfo derives * Even more missing TypeInfo derives * Add TypeInfo derives to new xcm types * Fmt * Cargo.lock * Add missing TypeInfo impls * Cargo.lock * More missing TypeInfos * Fixes * Cargo.lock * Cargo.lock * Add TypeInfo impls to xcm v2 * Update to scale-info 1.0 * Update finality-grandpa 0.14.4, patch for now * Update beefy * Remove patched finality-grandpa * Add TypeInfo impl to Outcome * Fixes * Call variant struct * Call variant struct * Fix test * Add TypeInfo impl * Cargo.lock * Cargo.lock * Cargo.lock * git checkout master Cargo.lock * update Substrate * Add missing scale-info features for beefy-primitives * Fmt * Remove check for now * Update beefy-primitives, removes scale-info feature * Update beefy-primitives again Co-authored-by: adoerr <0xad@gmx.net> Co-authored-by: Andronik Ordian <write@reusable.software> Co-authored-by: thiolliere <gui.thiolliere@gmail.com> Co-authored-by: parity-processbot <> Co-authored-by: Bastian Köcher <info@kchr.de>
138 lines
6.1 KiB
Rust
138 lines
6.1 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/>.
|
|
|
|
//! A common interface for all Bridge Message Dispatch modules.
|
|
|
|
#![cfg_attr(not(feature = "std"), no_std)]
|
|
#![warn(missing_docs)]
|
|
|
|
use bp_runtime::{
|
|
messages::{DispatchFeePayment, MessageDispatchResult},
|
|
ChainId, Size,
|
|
};
|
|
use codec::{Decode, Encode};
|
|
use frame_support::RuntimeDebug;
|
|
use scale_info::TypeInfo;
|
|
use sp_std::prelude::*;
|
|
|
|
/// Message dispatch weight.
|
|
pub type Weight = u64;
|
|
|
|
/// Spec version type.
|
|
pub type SpecVersion = u32;
|
|
|
|
/// A generic trait to dispatch arbitrary messages delivered over the bridge.
|
|
pub trait MessageDispatch<AccountId, MessageId> {
|
|
/// A type of the message to be dispatched.
|
|
type Message: codec::Decode;
|
|
|
|
/// Estimate dispatch weight.
|
|
///
|
|
/// This function must: (1) be instant and (2) return correct upper bound
|
|
/// of dispatch weight.
|
|
fn dispatch_weight(message: &Self::Message) -> Weight;
|
|
|
|
/// Dispatches the message internally.
|
|
///
|
|
/// `source_chain` indicates the chain where the message came from.
|
|
/// `target_chain` indicates the chain where message dispatch happens.
|
|
///
|
|
/// `id` is a short unique identifier of the message.
|
|
///
|
|
/// If message is `Ok`, then it should be dispatched. If it is `Err`, then it's just
|
|
/// a sign that some other component has rejected the message even before it has
|
|
/// reached `dispatch` method (right now this may only be caused if we fail to decode
|
|
/// the whole message).
|
|
///
|
|
/// Returns unspent dispatch weight.
|
|
fn dispatch<P: FnOnce(&AccountId, Weight) -> Result<(), ()>>(
|
|
source_chain: ChainId,
|
|
target_chain: ChainId,
|
|
id: MessageId,
|
|
message: Result<Self::Message, ()>,
|
|
pay_dispatch_fee: P,
|
|
) -> MessageDispatchResult;
|
|
}
|
|
|
|
/// Origin of a Call when it is dispatched on the target chain.
|
|
///
|
|
/// The source chain can (and should) verify that the message can be dispatched on the target chain
|
|
/// with a particular origin given the source chain's origin. This can be done with the
|
|
/// `verify_message_origin()` function.
|
|
#[derive(RuntimeDebug, Encode, Decode, Clone, PartialEq, Eq, TypeInfo)]
|
|
pub enum CallOrigin<SourceChainAccountId, TargetChainAccountPublic, TargetChainSignature> {
|
|
/// Call is sent by the Root origin on the source chain. On the target chain it is dispatched
|
|
/// from a derived account.
|
|
///
|
|
/// The derived account represents the source Root account on the target chain. This is useful
|
|
/// if the target chain needs some way of knowing that a call came from a priviledged origin on
|
|
/// the source chain (maybe to allow a configuration change for example).
|
|
SourceRoot,
|
|
|
|
/// Call is sent by `SourceChainAccountId` on the source chain. On the target chain it is
|
|
/// dispatched from an account controlled by a private key on the target chain.
|
|
///
|
|
/// The account can be identified by `TargetChainAccountPublic`. The proof that the
|
|
/// `SourceChainAccountId` controls `TargetChainAccountPublic` is the `TargetChainSignature`
|
|
/// over `(Call, SourceChainAccountId, TargetChainSpecVersion, SourceChainBridgeId).encode()`.
|
|
///
|
|
/// NOTE sending messages using this origin (or any other) does not have replay protection!
|
|
/// The assumption is that both the source account and the target account is controlled by
|
|
/// the same entity, so source-chain replay protection is sufficient.
|
|
/// As a consequence, it's extremely important for the target chain user to never produce
|
|
/// a signature with their target-private key on something that could be sent over the bridge,
|
|
/// i.e. if the target user signs `(<some-source-account-id>, Call::Transfer(X, 5))`
|
|
/// The owner of `some-source-account-id` can send that message multiple times, which would
|
|
/// result with multiple transfer calls being dispatched on the target chain.
|
|
/// So please, NEVER USE YOUR PRIVATE KEY TO SIGN SOMETHING YOU DON'T FULLY UNDERSTAND!
|
|
TargetAccount(SourceChainAccountId, TargetChainAccountPublic, TargetChainSignature),
|
|
|
|
/// Call is sent by the `SourceChainAccountId` on the source chain. On the target chain it is
|
|
/// dispatched from a derived account ID.
|
|
///
|
|
/// The account ID on the target chain is derived from the source account ID. This is useful if
|
|
/// you need a way to represent foreign accounts on this chain for call dispatch purposes.
|
|
///
|
|
/// Note that the derived account does not need to have a private key on the target chain. This
|
|
/// origin can therefore represent proxies, pallets, etc. as well as "regular" accounts.
|
|
SourceAccount(SourceChainAccountId),
|
|
}
|
|
|
|
/// Message payload type used by dispatch module.
|
|
#[derive(RuntimeDebug, Encode, Decode, Clone, PartialEq, Eq, TypeInfo)]
|
|
pub struct MessagePayload<SourceChainAccountId, TargetChainAccountPublic, TargetChainSignature, Call> {
|
|
/// Runtime specification version. We only dispatch messages that have the same
|
|
/// runtime version. Otherwise we risk to misinterpret encoded calls.
|
|
pub spec_version: SpecVersion,
|
|
/// Weight of the call, declared by the message sender. If it is less than actual
|
|
/// static weight, the call is not dispatched.
|
|
pub weight: Weight,
|
|
/// Call origin to be used during dispatch.
|
|
pub origin: CallOrigin<SourceChainAccountId, TargetChainAccountPublic, TargetChainSignature>,
|
|
/// Where the fee for dispatching message is paid?
|
|
pub dispatch_fee_payment: DispatchFeePayment,
|
|
/// The call itself.
|
|
pub call: Call,
|
|
}
|
|
|
|
impl<SourceChainAccountId, TargetChainAccountPublic, TargetChainSignature> Size
|
|
for MessagePayload<SourceChainAccountId, TargetChainAccountPublic, TargetChainSignature, Vec<u8>>
|
|
{
|
|
fn size_hint(&self) -> u32 {
|
|
self.call.len() as _
|
|
}
|
|
}
|