mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 09:21:04 +00:00
1556873060
* MultiAsset TWO * Ensure MultiLocation always has a canonical representation * Remove v1 module * Draft next MultiAsset API. * Implement custom encoding/decoding scheme for MultiLocation * Properly implement IntoIterator for Junctions * Implement TryFrom<MultiLocation> for Junctions * Fix spelling mistakes * Fix tests in xcm-executor * XCM core builds * XCM Executor builds * XCM Builder builds * Fix xcm-builder tests and compilation * Make pallet-xcm compile * Use MultiLocation::default() * Make polkadot-runtime-common compile * Make rococo-runtime compile * Change return type of parent_count to u8 * Change MAX_MULTILOCATION_LENGTH to 255 * Make kusama-runtime compile * Fix logic in pallet-xcm * Use MultiLocation::empty() * Fix logic in location_conversion * Fix logic in origin_conversion.rs * Make westend-runtime compile * Rename prefixes and suffixes variables * Rename non_parent to interior * Rename non_parent to interior * Add test for encode/decode roundtrip and fix decode algorithm * API changes making their way throughout * Some TODOs * Further build fixes * Rename non_parent/junctions to interior * Basic compile builds * First test fixed * All executor tests fixed * Typo * Optimize subsume_assets and add test * Optimize checked_sub * XCM Builder first test fixed * Fix builder tests * Fix doc test * Make xcm-simulator compile * Make xcm-simulator-example compile * Make spellcheck happy * cargo fmt * fix some doc tests * spelling * named fields for AllOf * Fix subtle bug where Null is treated as an identifier * Add FIXME comment awaiting for const generics eval stabilization * Update xcm/src/v0/multiasset.rs Co-authored-by: Alexander Popiak <alexander.popiak@parity.io> * Update xcm/src/v0/multiasset.rs Co-authored-by: Alexander Popiak <alexander.popiak@parity.io> * Update xcm/src/v0/multiasset.rs Co-authored-by: Alexander Popiak <alexander.popiak@parity.io> * Update xcm/src/v0/multiasset.rs Co-authored-by: Alexander Popiak <alexander.popiak@parity.io> * Reformat * Move to XCM version 1 * Spelling * warnings * Replace some more v0->v1s * warnings * format * Add max_assets param * building * test fixes * tests * another test * final test * Update rustdocs and add debug_assert where sensible * Revert debug_assert in const fn len() * tests * Rename Null -> Here * Introduce * More ergonomics * More ergonomics * test fix * test fixes * docs * BuyExecution includes * Fix XCM extrinsics * fmt * Make Vec<MultiAsset>/MultiAssets conversions safe * More MultiAssets conversion safety * spelling * fix doc test * Apply suggestions from code review Co-authored-by: Amar Singh <asinghchrony@protonmail.com> * Apply suggestions from code review Co-authored-by: Amar Singh <asinghchrony@protonmail.com> * fmt * Add v0, remove VersionedMultiAsset * Remove VersionedMultiLocation * Update xcm/src/v1/order.rs Co-authored-by: Amar Singh <asinghchrony@protonmail.com> * Update xcm/src/v1/mod.rs Co-authored-by: Amar Singh <asinghchrony@protonmail.com> * XCM v0 backwards compatibility * Full compatibility * fmt * Update xcm/pallet-xcm/src/lib.rs * Update xcm/src/v0/order.rs Co-authored-by: Shawn Tabrizi <shawntabrizi@gmail.com> * Tweaks to versioning system * Fixes * fmt * Fix pallet-xcm tests * fix * Substitute with_parent with with_parents_const * Rename argument name from a to m * Rename split_last to split_last_interior * Allow adding multiple parents in MultiLocation * Rename pop_parent to dec_parent * Ensure relay chain XCM sender receives a MultiLocation without any parents * Block only when MultiLocation destination length is 8 * Cargo fmt * Remove reverse iterators, implement DoubleEndedIterator and add tests * Fix iter_rev lifetime requirements * Cargo fmt * Add an into() method for Junctions for conciseness in const context * Ensure parent count is 0 while executing who in RelayedFrom * Appease spellchecker * Use and_then instead of repeated map_err * Remove custom codec indices for v1 Junctions * Add convenience 'contains_parents_only' method to MultiLocation * Fix merge conflict * Use more convenience methods * Remove with_parachain_interior * Prefer matching against tuple instead of using match guards * Match against tuple instead of using more match guards * Update encode/decode test for MultiLocation * Minor tweaks * Fixes * Fixes * Fixes * Fix MultiLocation * Add deprecation note for iter_rev and into_iter_rev * Update some rustdocs * cargo fmt * Fix xcm-executor unit tests * Fix compilation and unit tests in xcm-builder * cargo fmt * Fix tests in xcm-simulator-example * Publicize MultiLocation fields * Match on the MultiLocation struct directly in xcm-builder * Do not dereference undereferenceable types * Add convenience MultiLocation conversions for tuples * Use clearer import paths * Remove unused dependency * fix junction + response * Import from latest opaque xcm module * Update xcm/src/v1/mod.rs * better comment * Fix ownership transfer * Fix merge * Fix merge * cargo fmt * Fix merge * Fix merge * Fix integration test * More readable Parent syntax * cleanup * cleanup * cleanup * cleanup * cleanup * cleanup * cleanup * cleanup * cargo fmt * Fixes * Fix doc test Co-authored-by: Gav Wood <gavin@parity.io> Co-authored-by: Alexander Popiak <alexander.popiak@parity.io> Co-authored-by: Amar Singh <asinghchrony@protonmail.com> Co-authored-by: Shawn Tabrizi <shawntabrizi@gmail.com>
244 lines
8.8 KiB
Rust
244 lines
8.8 KiB
Rust
// Copyright 2020 Parity Technologies (UK) Ltd.
|
|
// This file is part of Polkadot.
|
|
|
|
// Polkadot 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.
|
|
|
|
// Polkadot 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 Polkadot. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//! Various implementations for `ConvertOrigin`.
|
|
|
|
use frame_support::traits::{EnsureOrigin, Get, GetBacking, OriginTrait};
|
|
use frame_system::RawOrigin as SystemRawOrigin;
|
|
use polkadot_parachain::primitives::IsSystem;
|
|
use sp_std::{convert::TryInto, marker::PhantomData};
|
|
use xcm::latest::{BodyId, BodyPart, Junction, Junctions::*, MultiLocation, NetworkId, OriginKind};
|
|
use xcm_executor::traits::{Convert, ConvertOrigin};
|
|
|
|
/// Sovereign accounts use the system's `Signed` origin with an account ID derived from the `LocationConverter`.
|
|
pub struct SovereignSignedViaLocation<LocationConverter, Origin>(
|
|
PhantomData<(LocationConverter, Origin)>,
|
|
);
|
|
impl<LocationConverter: Convert<MultiLocation, Origin::AccountId>, Origin: OriginTrait>
|
|
ConvertOrigin<Origin> for SovereignSignedViaLocation<LocationConverter, Origin>
|
|
where
|
|
Origin::AccountId: Clone,
|
|
{
|
|
fn convert_origin(origin: MultiLocation, kind: OriginKind) -> Result<Origin, MultiLocation> {
|
|
if let OriginKind::SovereignAccount = kind {
|
|
let location = LocationConverter::convert(origin)?;
|
|
Ok(Origin::signed(location).into())
|
|
} else {
|
|
Err(origin)
|
|
}
|
|
}
|
|
}
|
|
|
|
pub struct ParentAsSuperuser<Origin>(PhantomData<Origin>);
|
|
impl<Origin: OriginTrait> ConvertOrigin<Origin> for ParentAsSuperuser<Origin> {
|
|
fn convert_origin(origin: MultiLocation, kind: OriginKind) -> Result<Origin, MultiLocation> {
|
|
if kind == OriginKind::Superuser && origin.contains_parents_only(1) {
|
|
Ok(Origin::root())
|
|
} else {
|
|
Err(origin)
|
|
}
|
|
}
|
|
}
|
|
|
|
pub struct ChildSystemParachainAsSuperuser<ParaId, Origin>(PhantomData<(ParaId, Origin)>);
|
|
impl<ParaId: IsSystem + From<u32>, Origin: OriginTrait> ConvertOrigin<Origin>
|
|
for ChildSystemParachainAsSuperuser<ParaId, Origin>
|
|
{
|
|
fn convert_origin(origin: MultiLocation, kind: OriginKind) -> Result<Origin, MultiLocation> {
|
|
match (kind, origin) {
|
|
(
|
|
OriginKind::Superuser,
|
|
MultiLocation { parents: 0, interior: X1(Junction::Parachain(id)) },
|
|
) if ParaId::from(id).is_system() => Ok(Origin::root()),
|
|
(_, origin) => Err(origin),
|
|
}
|
|
}
|
|
}
|
|
|
|
pub struct SiblingSystemParachainAsSuperuser<ParaId, Origin>(PhantomData<(ParaId, Origin)>);
|
|
impl<ParaId: IsSystem + From<u32>, Origin: OriginTrait> ConvertOrigin<Origin>
|
|
for SiblingSystemParachainAsSuperuser<ParaId, Origin>
|
|
{
|
|
fn convert_origin(origin: MultiLocation, kind: OriginKind) -> Result<Origin, MultiLocation> {
|
|
match (kind, origin) {
|
|
(
|
|
OriginKind::Superuser,
|
|
MultiLocation { parents: 1, interior: X1(Junction::Parachain(id)) },
|
|
) if ParaId::from(id).is_system() => Ok(Origin::root()),
|
|
(_, origin) => Err(origin),
|
|
}
|
|
}
|
|
}
|
|
|
|
pub struct ChildParachainAsNative<ParachainOrigin, Origin>(PhantomData<(ParachainOrigin, Origin)>);
|
|
impl<ParachainOrigin: From<u32>, Origin: From<ParachainOrigin>> ConvertOrigin<Origin>
|
|
for ChildParachainAsNative<ParachainOrigin, Origin>
|
|
{
|
|
fn convert_origin(origin: MultiLocation, kind: OriginKind) -> Result<Origin, MultiLocation> {
|
|
match (kind, origin) {
|
|
(
|
|
OriginKind::Native,
|
|
MultiLocation { parents: 0, interior: X1(Junction::Parachain(id)) },
|
|
) => Ok(Origin::from(ParachainOrigin::from(id))),
|
|
(_, origin) => Err(origin),
|
|
}
|
|
}
|
|
}
|
|
|
|
pub struct SiblingParachainAsNative<ParachainOrigin, Origin>(
|
|
PhantomData<(ParachainOrigin, Origin)>,
|
|
);
|
|
impl<ParachainOrigin: From<u32>, Origin: From<ParachainOrigin>> ConvertOrigin<Origin>
|
|
for SiblingParachainAsNative<ParachainOrigin, Origin>
|
|
{
|
|
fn convert_origin(origin: MultiLocation, kind: OriginKind) -> Result<Origin, MultiLocation> {
|
|
match (kind, origin) {
|
|
(
|
|
OriginKind::Native,
|
|
MultiLocation { parents: 1, interior: X1(Junction::Parachain(id)) },
|
|
) => Ok(Origin::from(ParachainOrigin::from(id))),
|
|
(_, origin) => Err(origin),
|
|
}
|
|
}
|
|
}
|
|
|
|
// Our Relay-chain has a native origin given by the `Get`ter.
|
|
pub struct RelayChainAsNative<RelayOrigin, Origin>(PhantomData<(RelayOrigin, Origin)>);
|
|
impl<RelayOrigin: Get<Origin>, Origin> ConvertOrigin<Origin>
|
|
for RelayChainAsNative<RelayOrigin, Origin>
|
|
{
|
|
fn convert_origin(origin: MultiLocation, kind: OriginKind) -> Result<Origin, MultiLocation> {
|
|
if kind == OriginKind::Native && origin.contains_parents_only(1) {
|
|
Ok(RelayOrigin::get())
|
|
} else {
|
|
Err(origin)
|
|
}
|
|
}
|
|
}
|
|
|
|
pub struct SignedAccountId32AsNative<Network, Origin>(PhantomData<(Network, Origin)>);
|
|
impl<Network: Get<NetworkId>, Origin: OriginTrait> ConvertOrigin<Origin>
|
|
for SignedAccountId32AsNative<Network, Origin>
|
|
where
|
|
Origin::AccountId: From<[u8; 32]>,
|
|
{
|
|
fn convert_origin(origin: MultiLocation, kind: OriginKind) -> Result<Origin, MultiLocation> {
|
|
match (kind, origin) {
|
|
(
|
|
OriginKind::Native,
|
|
MultiLocation { parents: 0, interior: X1(Junction::AccountId32 { id, network }) },
|
|
) if matches!(network, NetworkId::Any) || network == Network::get() =>
|
|
Ok(Origin::signed(id.into())),
|
|
(_, origin) => Err(origin),
|
|
}
|
|
}
|
|
}
|
|
|
|
pub struct SignedAccountKey20AsNative<Network, Origin>(PhantomData<(Network, Origin)>);
|
|
impl<Network: Get<NetworkId>, Origin: OriginTrait> ConvertOrigin<Origin>
|
|
for SignedAccountKey20AsNative<Network, Origin>
|
|
where
|
|
Origin::AccountId: From<[u8; 20]>,
|
|
{
|
|
fn convert_origin(origin: MultiLocation, kind: OriginKind) -> Result<Origin, MultiLocation> {
|
|
match (kind, origin) {
|
|
(
|
|
OriginKind::Native,
|
|
MultiLocation { parents: 0, interior: X1(Junction::AccountKey20 { key, network }) },
|
|
) if (matches!(network, NetworkId::Any) || network == Network::get()) =>
|
|
Ok(Origin::signed(key.into())),
|
|
(_, origin) => Err(origin),
|
|
}
|
|
}
|
|
}
|
|
|
|
/// `EnsureOrigin` barrier to convert from dispatch origin to XCM origin, if one exists.
|
|
pub struct EnsureXcmOrigin<Origin, Conversion>(PhantomData<(Origin, Conversion)>);
|
|
impl<Origin: OriginTrait + Clone, Conversion: Convert<Origin, MultiLocation>> EnsureOrigin<Origin>
|
|
for EnsureXcmOrigin<Origin, Conversion>
|
|
where
|
|
Origin::PalletsOrigin: PartialEq,
|
|
{
|
|
type Success = MultiLocation;
|
|
fn try_origin(o: Origin) -> Result<Self::Success, Origin> {
|
|
let o = match Conversion::convert(o) {
|
|
Ok(location) => return Ok(location),
|
|
Err(o) => o,
|
|
};
|
|
// We institute a root fallback so root can always represent the context. This
|
|
// guarantees that `successful_origin` will work.
|
|
if o.caller() == Origin::root().caller() {
|
|
Ok(Here.into())
|
|
} else {
|
|
Err(o)
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "runtime-benchmarks")]
|
|
fn successful_origin() -> Origin {
|
|
Origin::root()
|
|
}
|
|
}
|
|
|
|
/// `Convert` implementation to convert from some a `Signed` (system) `Origin` into an `AccountId32`.
|
|
///
|
|
/// Typically used when configuring `pallet-xcm` for allowing normal accounts to dispatch an XCM from an `AccountId32`
|
|
/// origin.
|
|
pub struct SignedToAccountId32<Origin, AccountId, Network>(
|
|
PhantomData<(Origin, AccountId, Network)>,
|
|
);
|
|
impl<Origin: OriginTrait + Clone, AccountId: Into<[u8; 32]>, Network: Get<NetworkId>>
|
|
Convert<Origin, MultiLocation> for SignedToAccountId32<Origin, AccountId, Network>
|
|
where
|
|
Origin::PalletsOrigin: From<SystemRawOrigin<AccountId>>
|
|
+ TryInto<SystemRawOrigin<AccountId>, Error = Origin::PalletsOrigin>,
|
|
{
|
|
fn convert(o: Origin) -> Result<MultiLocation, Origin> {
|
|
o.try_with_caller(|caller| match caller.try_into() {
|
|
Ok(SystemRawOrigin::Signed(who)) =>
|
|
Ok(Junction::AccountId32 { network: Network::get(), id: who.into() }.into()),
|
|
Ok(other) => Err(other.into()),
|
|
Err(other) => Err(other),
|
|
})
|
|
}
|
|
}
|
|
|
|
/// `Convert` implementation to convert from some an origin which implements `Backing` into a corresponding `Plurality`
|
|
/// `MultiLocation`.
|
|
///
|
|
/// Typically used when configuring `pallet-xcm` for allowing a collective's Origin to dispatch an XCM from a
|
|
/// `Plurality` origin.
|
|
pub struct BackingToPlurality<Origin, COrigin, Body>(PhantomData<(Origin, COrigin, Body)>);
|
|
impl<Origin: OriginTrait + Clone, COrigin: GetBacking, Body: Get<BodyId>>
|
|
Convert<Origin, MultiLocation> for BackingToPlurality<Origin, COrigin, Body>
|
|
where
|
|
Origin::PalletsOrigin: From<COrigin> + TryInto<COrigin, Error = Origin::PalletsOrigin>,
|
|
{
|
|
fn convert(o: Origin) -> Result<MultiLocation, Origin> {
|
|
o.try_with_caller(|caller| match caller.try_into() {
|
|
Ok(co) => match co.get_backing() {
|
|
Some(backing) => Ok(Junction::Plurality {
|
|
id: Body::get(),
|
|
part: BodyPart::Fraction { nom: backing.approvals, denom: backing.eligible },
|
|
}
|
|
.into()),
|
|
None => Err(co.into()),
|
|
},
|
|
Err(other) => Err(other),
|
|
})
|
|
}
|
|
}
|