feat: Rebrand Polkadot/Substrate references to PezkuwiChain

This commit systematically rebrands various references from Parity Technologies'
Polkadot/Substrate ecosystem to PezkuwiChain within the kurdistan-sdk.

Key changes include:
- Updated external repository URLs (zombienet-sdk, parity-db, parity-scale-codec, wasm-instrument) to point to pezkuwichain forks.
- Modified internal documentation and code comments to reflect PezkuwiChain naming and structure.
- Replaced direct references to  with  or specific paths within the  for XCM, Pezkuwi, and other modules.
- Cleaned up deprecated  issue and PR references in various  and  files, particularly in  and  modules.
- Adjusted image and logo URLs in documentation to point to PezkuwiChain assets.
- Removed or rephrased comments related to external Polkadot/Substrate PRs and issues.

This is a significant step towards fully customizing the SDK for the PezkuwiChain ecosystem.
This commit is contained in:
2025-12-14 00:04:10 +03:00
parent 286de54384
commit 1c0e57d984
9084 changed files with 997839 additions and 997557 deletions
@@ -4,7 +4,7 @@
use codec::DecodeAll;
use core::slice::Iter;
use frame_support::{ensure, BoundedVec};
use pezframe_support::{ensure, BoundedVec};
use snowbridge_core::{AgentIdOf, TokenId, TokenIdOf};
use crate::v2::{
@@ -13,9 +13,9 @@ use crate::v2::{
};
use crate::v2::convert::XcmConverterError::{AssetResolutionFailed, FilterDoesNotConsumeAllAssets};
use sp_core::H160;
use sp_runtime::traits::MaybeConvert;
use sp_std::{iter::Peekable, marker::PhantomData, prelude::*};
use pezsp_core::H160;
use pezsp_runtime::traits::MaybeConvert;
use pezsp_std::{iter::Peekable, marker::PhantomData, prelude::*};
use xcm::prelude::*;
use xcm_executor::traits::ConvertLocation;
use XcmConverterError::*;
@@ -10,13 +10,13 @@ pub use convert::XcmConverter;
use super::message::SendMessage;
use codec::{Decode, Encode};
use frame_support::{
use pezframe_support::{
ensure,
traits::{Contains, Get, ProcessMessageError},
};
use snowbridge_core::{ParaId, TokenId};
use sp_runtime::traits::MaybeConvert;
use sp_std::{marker::PhantomData, ops::ControlFlow, prelude::*};
use pezsp_runtime::traits::MaybeConvert;
use pezsp_std::{marker::PhantomData, ops::ControlFlow, prelude::*};
use xcm::prelude::*;
use xcm_builder::{CreateMatcher, ExporterFor, MatchXcm};
use xcm_executor::traits::ExportXcm;
@@ -3,11 +3,11 @@ use crate::{
v2::{convert::XcmConverterError, Command, Message},
SendError, SendMessageFeeProvider,
};
use frame_support::{parameter_types, BoundedVec};
use pezframe_support::{parameter_types, BoundedVec};
use hex_literal::hex;
use snowbridge_core::{AgentIdOf, TokenIdOf};
use sp_core::H256;
use sp_std::default::Default;
use pezsp_core::H256;
use pezsp_std::default::Default;
use xcm::{latest::ZAGROS_GENESIS_HASH, prelude::SendError as XcmSendError};
use xcm_executor::traits::ConvertLocation;