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
+7 -7
View File
@@ -23,9 +23,9 @@ use bounded_collections::{BoundedVec, ConstU32};
use codec::{CompactAs, Decode, DecodeWithMemTracking, Encode, MaxEncodedLen};
use scale_info::TypeInfo;
use serde::{Deserialize, Serialize};
use sp_core::{bytes, RuntimeDebug, TypeId};
use sp_runtime::traits::Hash as _;
use sp_weights::Weight;
use pezsp_core::{bytes, RuntimeDebug, TypeId};
use pezsp_runtime::traits::Hash as _;
use pezsp_weights::Weight;
use pezkuwi_core_primitives::{Hash, OutboundHrmpMessage};
@@ -59,7 +59,7 @@ impl core::fmt::Debug for HeadData {
impl HeadData {
/// Returns the hash of this head data.
pub fn hash(&self) -> Hash {
sp_runtime::traits::BlakeTwo256::hash(&self.0)
pezsp_runtime::traits::BlakeTwo256::hash(&self.0)
}
}
@@ -90,7 +90,7 @@ impl core::fmt::Debug for ValidationCode {
impl ValidationCode {
/// Get the blake2-256 hash of the validation code bytes.
pub fn hash(&self) -> ValidationCodeHash {
ValidationCodeHash(sp_runtime::traits::BlakeTwo256::hash(&self.0[..]))
ValidationCodeHash(pezsp_runtime::traits::BlakeTwo256::hash(&self.0[..]))
}
}
@@ -427,7 +427,7 @@ impl XcmpMessageHandler for () {
}
/// Validation parameters for evaluating the teyrchain validity function.
// TODO: balance downloads (https://github.com/paritytech/polkadot/issues/220)
// TODO: balance downloads (https://github.com/pezkuwichain/kurdistan-sdk/issues/131)
#[derive(PartialEq, Eq, Decode, Clone)]
#[cfg_attr(feature = "std", derive(Debug, Encode))]
pub struct ValidationParams {
@@ -458,7 +458,7 @@ pub type HorizontalMessages =
BoundedVec<OutboundHrmpMessage<Id>, ConstU32<MAX_HORIZONTAL_MESSAGE_NUM>>;
/// The result of teyrchain validation.
// TODO: balance uploads (https://github.com/paritytech/polkadot/issues/220)
// TODO: balance uploads (https://github.com/pezkuwichain/kurdistan-sdk/issues/131)
#[derive(PartialEq, Eq, Clone, Encode)]
#[cfg_attr(feature = "std", derive(Debug, Decode))]
pub struct ValidationResult {