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
+1 -1
View File
@@ -121,7 +121,7 @@ use pezkuwi_statement_table::{
Context as TableContextTrait, Table,
};
use pezkuwi_teyrchain_primitives::primitives::IsSystem;
use sp_keystore::KeystorePtr;
use pezsp_keystore::KeystorePtr;
mod error;
+9 -9
View File
@@ -35,10 +35,10 @@ use pezkuwi_primitives_test_helpers::{
dummy_committed_candidate_receipt_v2, dummy_hash, validator_pubkeys, CandidateDescriptor,
};
use pezkuwi_statement_table::v2::Misbehavior;
use sp_application_crypto::AppCrypto;
use sp_keyring::Sr25519Keyring;
use sp_keystore::Keystore;
use sp_tracing as _;
use pezsp_application_crypto::AppCrypto;
use pezsp_keyring::Sr25519Keyring;
use pezsp_keystore::Keystore;
use pezsp_tracing as _;
use std::{
collections::{BTreeMap, HashMap, VecDeque},
time::Duration,
@@ -115,7 +115,7 @@ impl Default for TestState {
Sr25519Keyring::One,
];
let keystore = Arc::new(sc_keystore::LocalKeystore::in_memory());
let keystore = Arc::new(pezsc_keystore::LocalKeystore::in_memory());
// Make sure `Alice` key is in the keystore, so this mocked node will be a teyrchain
// validator.
Keystore::sr25519_generate_new(&*keystore, ValidatorId::ID, Some(&validators[0].to_seed()))
@@ -187,9 +187,9 @@ fn test_harness<T: Future<Output = VirtualOverseer>>(
keystore: KeystorePtr,
test: impl FnOnce(VirtualOverseer) -> T,
) {
sp_tracing::init_for_tests();
pezsp_tracing::init_for_tests();
let pool = sp_core::testing::TaskExecutor::new();
let pool = pezsp_core::testing::TaskExecutor::new();
let (context, virtual_overseer) =
pezkuwi_node_subsystem_test_helpers::make_subsystem_context(pool.clone());
@@ -2156,7 +2156,7 @@ fn backing_works_after_failed_validation() {
#[test]
fn candidate_backing_reorders_votes() {
use sp_core::Encode;
use pezsp_core::Encode;
let core_idx = CoreIndex(10);
let validators = vec![
@@ -2419,7 +2419,7 @@ fn retry_works() {
#[test]
fn observes_backing_even_if_not_validator() {
let mut test_state = TestState::default();
let empty_keystore = Arc::new(sc_keystore::LocalKeystore::in_memory());
let empty_keystore = Arc::new(pezsc_keystore::LocalKeystore::in_memory());
test_harness(empty_keystore, |mut virtual_overseer| async move {
let para_id = activate_initial_leaf(&mut virtual_overseer, &mut test_state).await;