feat: initialize Kurdistan SDK - independent fork of Polkadot SDK
This commit is contained in:
@@ -0,0 +1,387 @@
|
||||
// Copyright (C) Parity Technologies (UK) Ltd.
|
||||
// This file is part of Pezkuwi.
|
||||
|
||||
// Pezkuwi 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.
|
||||
|
||||
// Pezkuwi 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 Pezkuwi. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
//! Adapters to work with [`frame_support::traits::tokens::nonfungibles`] through XCM.
|
||||
|
||||
use crate::{AssetChecking, MintLocation};
|
||||
use core::{fmt::Debug, marker::PhantomData, result};
|
||||
use frame_support::{
|
||||
ensure,
|
||||
traits::{tokens::nonfungibles, Get},
|
||||
};
|
||||
use xcm::latest::prelude::*;
|
||||
use xcm_executor::traits::{
|
||||
ConvertLocation, Error as MatchError, MatchesNonFungibles, TransactAsset,
|
||||
};
|
||||
|
||||
const LOG_TARGET: &str = "xcm::nonfungibles_adapter";
|
||||
|
||||
/// [`TransactAsset`] implementation that allows the use of a [`nonfungibles`] implementation for
|
||||
/// handling an asset in the XCM executor.
|
||||
/// Only works for transfers.
|
||||
pub struct NonFungiblesTransferAdapter<Assets, Matcher, AccountIdConverter, AccountId>(
|
||||
PhantomData<(Assets, Matcher, AccountIdConverter, AccountId)>,
|
||||
)
|
||||
where
|
||||
Assets: nonfungibles::Transfer<AccountId>,
|
||||
Assets::CollectionId: Debug,
|
||||
Assets::ItemId: Debug;
|
||||
impl<
|
||||
Assets: nonfungibles::Transfer<AccountId>,
|
||||
Matcher: MatchesNonFungibles<Assets::CollectionId, Assets::ItemId>,
|
||||
AccountIdConverter: ConvertLocation<AccountId>,
|
||||
AccountId: Clone + Debug, // can't get away without it since Currency is generic over it.
|
||||
> TransactAsset for NonFungiblesTransferAdapter<Assets, Matcher, AccountIdConverter, AccountId>
|
||||
where
|
||||
Assets::CollectionId: Debug,
|
||||
Assets::ItemId: Debug,
|
||||
{
|
||||
fn transfer_asset(
|
||||
what: &Asset,
|
||||
from: &Location,
|
||||
to: &Location,
|
||||
context: &XcmContext,
|
||||
) -> result::Result<xcm_executor::AssetsInHolding, XcmError> {
|
||||
tracing::trace!(
|
||||
target: LOG_TARGET,
|
||||
?what,
|
||||
?from,
|
||||
?to,
|
||||
?context,
|
||||
"transfer_asset",
|
||||
);
|
||||
// Check we handle this asset.
|
||||
let (class, instance) = Matcher::matches_nonfungibles(what)?;
|
||||
let destination = AccountIdConverter::convert_location(to)
|
||||
.ok_or(MatchError::AccountIdConversionFailed)?;
|
||||
Assets::transfer(&class, &instance, &destination).map_err(|e| {
|
||||
tracing::debug!(target: LOG_TARGET, ?e, ?class, ?instance, ?destination, "Failed to transfer asset");
|
||||
XcmError::FailedToTransactAsset(e.into())
|
||||
})?;
|
||||
Ok(what.clone().into())
|
||||
}
|
||||
}
|
||||
|
||||
/// [`TransactAsset`] implementation that allows the use of a [`nonfungibles`] implementation for
|
||||
/// handling an asset in the XCM executor.
|
||||
/// Only works for teleport bookkeeping.
|
||||
pub struct NonFungiblesMutateAdapter<
|
||||
Assets,
|
||||
Matcher,
|
||||
AccountIdConverter,
|
||||
AccountId,
|
||||
CheckAsset,
|
||||
CheckingAccount,
|
||||
>(PhantomData<(Assets, Matcher, AccountIdConverter, AccountId, CheckAsset, CheckingAccount)>);
|
||||
|
||||
impl<
|
||||
Assets: nonfungibles::Mutate<AccountId>,
|
||||
Matcher: MatchesNonFungibles<Assets::CollectionId, Assets::ItemId>,
|
||||
AccountIdConverter: ConvertLocation<AccountId>,
|
||||
AccountId: Clone + Eq, // can't get away without it since Currency is generic over it.
|
||||
CheckAsset: AssetChecking<Assets::CollectionId>,
|
||||
CheckingAccount: Get<Option<AccountId>>,
|
||||
>
|
||||
NonFungiblesMutateAdapter<
|
||||
Assets,
|
||||
Matcher,
|
||||
AccountIdConverter,
|
||||
AccountId,
|
||||
CheckAsset,
|
||||
CheckingAccount,
|
||||
>
|
||||
{
|
||||
fn can_accrue_checked(class: Assets::CollectionId, instance: Assets::ItemId) -> XcmResult {
|
||||
ensure!(Assets::owner(&class, &instance).is_none(), XcmError::NotDepositable);
|
||||
Ok(())
|
||||
}
|
||||
fn can_reduce_checked(class: Assets::CollectionId, instance: Assets::ItemId) -> XcmResult {
|
||||
if let Some(checking_account) = CheckingAccount::get() {
|
||||
// This is an asset whose teleports we track.
|
||||
let owner = Assets::owner(&class, &instance);
|
||||
ensure!(owner == Some(checking_account), XcmError::NotWithdrawable);
|
||||
ensure!(Assets::can_transfer(&class, &instance), XcmError::NotWithdrawable);
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
fn accrue_checked(class: Assets::CollectionId, instance: Assets::ItemId) {
|
||||
if let Some(checking_account) = CheckingAccount::get() {
|
||||
let ok = Assets::mint_into(&class, &instance, &checking_account).is_ok();
|
||||
debug_assert!(ok, "`mint_into` cannot generally fail; qed");
|
||||
}
|
||||
}
|
||||
fn reduce_checked(class: Assets::CollectionId, instance: Assets::ItemId) {
|
||||
let ok = Assets::burn(&class, &instance, None).is_ok();
|
||||
debug_assert!(ok, "`can_check_in` must have returned `true` immediately prior; qed");
|
||||
}
|
||||
}
|
||||
|
||||
impl<
|
||||
Assets: nonfungibles::Mutate<AccountId>,
|
||||
Matcher: MatchesNonFungibles<Assets::CollectionId, Assets::ItemId>,
|
||||
AccountIdConverter: ConvertLocation<AccountId>,
|
||||
AccountId: Clone + Eq + Debug, /* can't get away without it since Currency is generic
|
||||
* over it. */
|
||||
CheckAsset: AssetChecking<Assets::CollectionId>,
|
||||
CheckingAccount: Get<Option<AccountId>>,
|
||||
> TransactAsset
|
||||
for NonFungiblesMutateAdapter<
|
||||
Assets,
|
||||
Matcher,
|
||||
AccountIdConverter,
|
||||
AccountId,
|
||||
CheckAsset,
|
||||
CheckingAccount,
|
||||
>
|
||||
where
|
||||
Assets::CollectionId: Debug,
|
||||
Assets::ItemId: Debug,
|
||||
{
|
||||
fn can_check_in(origin: &Location, what: &Asset, context: &XcmContext) -> XcmResult {
|
||||
tracing::trace!(
|
||||
target: LOG_TARGET,
|
||||
?origin,
|
||||
?what,
|
||||
?context,
|
||||
"can_check_in",
|
||||
);
|
||||
// Check we handle this asset.
|
||||
let (class, instance) = Matcher::matches_nonfungibles(what)?;
|
||||
match CheckAsset::asset_checking(&class) {
|
||||
// We track this asset's teleports to ensure no more come in than have gone out.
|
||||
Some(MintLocation::Local) => Self::can_reduce_checked(class, instance),
|
||||
// We track this asset's teleports to ensure no more go out than have come in.
|
||||
Some(MintLocation::NonLocal) => Self::can_accrue_checked(class, instance),
|
||||
_ => Ok(()),
|
||||
}
|
||||
}
|
||||
|
||||
fn check_in(origin: &Location, what: &Asset, context: &XcmContext) {
|
||||
tracing::trace!(
|
||||
target: LOG_TARGET,
|
||||
?origin,
|
||||
?what,
|
||||
?context,
|
||||
"check_in",
|
||||
);
|
||||
if let Ok((class, instance)) = Matcher::matches_nonfungibles(what) {
|
||||
match CheckAsset::asset_checking(&class) {
|
||||
// We track this asset's teleports to ensure no more come in than have gone out.
|
||||
Some(MintLocation::Local) => Self::reduce_checked(class, instance),
|
||||
// We track this asset's teleports to ensure no more go out than have come in.
|
||||
Some(MintLocation::NonLocal) => Self::accrue_checked(class, instance),
|
||||
_ => (),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn can_check_out(dest: &Location, what: &Asset, context: &XcmContext) -> XcmResult {
|
||||
tracing::trace!(
|
||||
target: LOG_TARGET,
|
||||
?dest,
|
||||
?what,
|
||||
?context,
|
||||
"can_check_out",
|
||||
);
|
||||
// Check we handle this asset.
|
||||
let (class, instance) = Matcher::matches_nonfungibles(what)?;
|
||||
match CheckAsset::asset_checking(&class) {
|
||||
// We track this asset's teleports to ensure no more come in than have gone out.
|
||||
Some(MintLocation::Local) => Self::can_accrue_checked(class, instance),
|
||||
// We track this asset's teleports to ensure no more go out than have come in.
|
||||
Some(MintLocation::NonLocal) => Self::can_reduce_checked(class, instance),
|
||||
_ => Ok(()),
|
||||
}
|
||||
}
|
||||
|
||||
fn check_out(dest: &Location, what: &Asset, context: &XcmContext) {
|
||||
tracing::trace!(
|
||||
target: LOG_TARGET,
|
||||
?dest,
|
||||
?what,
|
||||
?context,
|
||||
"check_out",
|
||||
);
|
||||
if let Ok((class, instance)) = Matcher::matches_nonfungibles(what) {
|
||||
match CheckAsset::asset_checking(&class) {
|
||||
// We track this asset's teleports to ensure no more come in than have gone out.
|
||||
Some(MintLocation::Local) => Self::accrue_checked(class, instance),
|
||||
// We track this asset's teleports to ensure no more go out than have come in.
|
||||
Some(MintLocation::NonLocal) => Self::reduce_checked(class, instance),
|
||||
_ => (),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn deposit_asset(what: &Asset, who: &Location, context: Option<&XcmContext>) -> XcmResult {
|
||||
tracing::trace!(
|
||||
target: LOG_TARGET,
|
||||
?what,
|
||||
?who,
|
||||
?context,
|
||||
"deposit_asset",
|
||||
);
|
||||
// Check we handle this asset.
|
||||
let (class, instance) = Matcher::matches_nonfungibles(what)?;
|
||||
let who = AccountIdConverter::convert_location(who)
|
||||
.ok_or(MatchError::AccountIdConversionFailed)?;
|
||||
Assets::mint_into(&class, &instance, &who).map_err(|e| {
|
||||
tracing::debug!(target: LOG_TARGET, ?e, ?class, ?instance, ?who, "Failed to mint asset");
|
||||
XcmError::FailedToTransactAsset(e.into())
|
||||
})
|
||||
}
|
||||
|
||||
fn withdraw_asset(
|
||||
what: &Asset,
|
||||
who: &Location,
|
||||
maybe_context: Option<&XcmContext>,
|
||||
) -> result::Result<xcm_executor::AssetsInHolding, XcmError> {
|
||||
tracing::trace!(
|
||||
target: LOG_TARGET,
|
||||
?what,
|
||||
?who,
|
||||
?maybe_context,
|
||||
"withdraw_asset",
|
||||
);
|
||||
// Check we handle this asset.
|
||||
let who = AccountIdConverter::convert_location(who)
|
||||
.ok_or(MatchError::AccountIdConversionFailed)?;
|
||||
let (class, instance) = Matcher::matches_nonfungibles(what)?;
|
||||
Assets::burn(&class, &instance, Some(&who)).map_err(|e| {
|
||||
tracing::debug!(target: LOG_TARGET, ?e, ?class, ?instance, ?who, "Failed to burn asset");
|
||||
XcmError::FailedToTransactAsset(e.into())
|
||||
})?;
|
||||
Ok(what.clone().into())
|
||||
}
|
||||
}
|
||||
|
||||
/// [`TransactAsset`] implementation that allows the use of a [`nonfungibles`] implementation for
|
||||
/// handling an asset in the XCM executor.
|
||||
/// Works for everything.
|
||||
pub struct NonFungiblesAdapter<
|
||||
Assets,
|
||||
Matcher,
|
||||
AccountIdConverter,
|
||||
AccountId,
|
||||
CheckAsset,
|
||||
CheckingAccount,
|
||||
>(PhantomData<(Assets, Matcher, AccountIdConverter, AccountId, CheckAsset, CheckingAccount)>)
|
||||
where
|
||||
Assets: nonfungibles::Transfer<AccountId>,
|
||||
Assets::CollectionId: Debug,
|
||||
Assets::ItemId: Debug;
|
||||
impl<
|
||||
Assets: nonfungibles::Mutate<AccountId> + nonfungibles::Transfer<AccountId>,
|
||||
Matcher: MatchesNonFungibles<Assets::CollectionId, Assets::ItemId>,
|
||||
AccountIdConverter: ConvertLocation<AccountId>,
|
||||
AccountId: Clone + Eq + Debug, /* can't get away without it since Currency is generic
|
||||
* over it. */
|
||||
CheckAsset: AssetChecking<Assets::CollectionId>,
|
||||
CheckingAccount: Get<Option<AccountId>>,
|
||||
> TransactAsset
|
||||
for NonFungiblesAdapter<
|
||||
Assets,
|
||||
Matcher,
|
||||
AccountIdConverter,
|
||||
AccountId,
|
||||
CheckAsset,
|
||||
CheckingAccount,
|
||||
>
|
||||
where
|
||||
Assets::CollectionId: Debug,
|
||||
Assets::ItemId: Debug,
|
||||
{
|
||||
fn can_check_in(origin: &Location, what: &Asset, context: &XcmContext) -> XcmResult {
|
||||
NonFungiblesMutateAdapter::<
|
||||
Assets,
|
||||
Matcher,
|
||||
AccountIdConverter,
|
||||
AccountId,
|
||||
CheckAsset,
|
||||
CheckingAccount,
|
||||
>::can_check_in(origin, what, context)
|
||||
}
|
||||
|
||||
fn check_in(origin: &Location, what: &Asset, context: &XcmContext) {
|
||||
NonFungiblesMutateAdapter::<
|
||||
Assets,
|
||||
Matcher,
|
||||
AccountIdConverter,
|
||||
AccountId,
|
||||
CheckAsset,
|
||||
CheckingAccount,
|
||||
>::check_in(origin, what, context)
|
||||
}
|
||||
|
||||
fn can_check_out(dest: &Location, what: &Asset, context: &XcmContext) -> XcmResult {
|
||||
NonFungiblesMutateAdapter::<
|
||||
Assets,
|
||||
Matcher,
|
||||
AccountIdConverter,
|
||||
AccountId,
|
||||
CheckAsset,
|
||||
CheckingAccount,
|
||||
>::can_check_out(dest, what, context)
|
||||
}
|
||||
|
||||
fn check_out(dest: &Location, what: &Asset, context: &XcmContext) {
|
||||
NonFungiblesMutateAdapter::<
|
||||
Assets,
|
||||
Matcher,
|
||||
AccountIdConverter,
|
||||
AccountId,
|
||||
CheckAsset,
|
||||
CheckingAccount,
|
||||
>::check_out(dest, what, context)
|
||||
}
|
||||
|
||||
fn deposit_asset(what: &Asset, who: &Location, context: Option<&XcmContext>) -> XcmResult {
|
||||
NonFungiblesMutateAdapter::<
|
||||
Assets,
|
||||
Matcher,
|
||||
AccountIdConverter,
|
||||
AccountId,
|
||||
CheckAsset,
|
||||
CheckingAccount,
|
||||
>::deposit_asset(what, who, context)
|
||||
}
|
||||
|
||||
fn withdraw_asset(
|
||||
what: &Asset,
|
||||
who: &Location,
|
||||
maybe_context: Option<&XcmContext>,
|
||||
) -> result::Result<xcm_executor::AssetsInHolding, XcmError> {
|
||||
NonFungiblesMutateAdapter::<
|
||||
Assets,
|
||||
Matcher,
|
||||
AccountIdConverter,
|
||||
AccountId,
|
||||
CheckAsset,
|
||||
CheckingAccount,
|
||||
>::withdraw_asset(what, who, maybe_context)
|
||||
}
|
||||
|
||||
fn transfer_asset(
|
||||
what: &Asset,
|
||||
from: &Location,
|
||||
to: &Location,
|
||||
context: &XcmContext,
|
||||
) -> result::Result<xcm_executor::AssetsInHolding, XcmError> {
|
||||
NonFungiblesTransferAdapter::<Assets, Matcher, AccountIdConverter, AccountId>::transfer_asset(
|
||||
what, from, to, context,
|
||||
)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user