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 e4778b4576
commit 379cb741ed
9082 changed files with 997824 additions and 997542 deletions
@@ -13,10 +13,10 @@ workspace = true
zagros-runtime = { workspace = true, default-features = true }
zagros-runtime-constants = { workspace = true, default-features = true }
frame-system = { workspace = true, default-features = true }
pallet-bags-list-remote-tests = { workspace = true }
sp-core = { workspace = true, default-features = true }
sp-tracing = { workspace = true, default-features = true }
pezframe-system = { workspace = true, default-features = true }
pezpallet-bags-list-remote-tests = { workspace = true }
pezsp-core = { workspace = true, default-features = true }
pezsp-tracing = { workspace = true, default-features = true }
clap = { features = ["derive"], workspace = true }
log = { workspace = true, default-features = true }
@@ -24,8 +24,8 @@ tokio = { features = ["macros"], workspace = true, default-features = true }
[features]
runtime-benchmarks = [
"frame-system/runtime-benchmarks",
"pallet-bags-list-remote-tests/runtime-benchmarks",
"pezframe-system/runtime-benchmarks",
"pezpallet-bags-list-remote-tests/runtime-benchmarks",
"zagros-runtime-constants/runtime-benchmarks",
"zagros-runtime/runtime-benchmarks",
]
@@ -47,7 +47,7 @@ struct Cli {
#[tokio::main]
async fn main() {
let options = Cli::parse();
sp_tracing::try_init_simple();
pezsp_tracing::try_init_simple();
log::info!(
target: "remote-ext-tests",
@@ -56,10 +56,10 @@ async fn main() {
options.command
);
use pallet_bags_list_remote_tests::*;
use pezpallet_bags_list_remote_tests::*;
match options.runtime {
Runtime::Zagros => sp_core::crypto::set_default_ss58_version(
<zagros_runtime::Runtime as frame_system::Config>::SS58Prefix::get()
Runtime::Zagros => pezsp_core::crypto::set_default_ss58_version(
<zagros_runtime::Runtime as pezframe_system::Config>::SS58Prefix::get()
.try_into()
.unwrap(),
),