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
+6 -6
View File
@@ -24,18 +24,18 @@ pezkuwi-node-primitives = { workspace = true, default-features = true }
pezkuwi-node-subsystem = { workspace = true, default-features = true }
pezkuwi-node-subsystem-util = { workspace = true, default-features = true }
pezkuwi-primitives = { workspace = true, default-features = true }
sp-consensus = { workspace = true }
pezsp-consensus = { workspace = true }
[dev-dependencies]
assert_matches = { workspace = true }
kvdb-memorydb = { workspace = true }
sp-tracing = { workspace = true }
pezsp-tracing = { workspace = true }
parking_lot = { workspace = true, default-features = true }
pezkuwi-node-subsystem-test-helpers = { workspace = true }
pezkuwi-primitives-test-helpers = { workspace = true }
sp-core = { workspace = true, default-features = true }
sp-keyring = { workspace = true, default-features = true }
pezsp-core = { workspace = true, default-features = true }
pezsp-keyring = { workspace = true, default-features = true }
[features]
runtime-benchmarks = [
@@ -47,6 +47,6 @@ runtime-benchmarks = [
"pezkuwi-node-subsystem/runtime-benchmarks",
"pezkuwi-primitives-test-helpers/runtime-benchmarks",
"pezkuwi-primitives/runtime-benchmarks",
"sp-consensus/runtime-benchmarks",
"sp-keyring/runtime-benchmarks",
"pezsp-consensus/runtime-benchmarks",
"pezsp-keyring/runtime-benchmarks",
]
+2 -2
View File
@@ -36,7 +36,7 @@ use futures::{
};
use futures_timer::Delay;
use pezkuwi_node_subsystem_util::database::{DBTransaction, Database};
use sp_consensus::SyncOracle;
use pezsp_consensus::SyncOracle;
use bitvec::{order::Lsb0 as BitOrderLsb0, vec::BitVec};
use pezkuwi_node_primitives::{AvailableData, ErasureChunk};
@@ -647,7 +647,7 @@ async fn run_iteration<Context>(
// Start prune-all on a separate thread, so that in the case when the operation takes
// longer than expected we don't keep the whole subsystem blocked.
// See: https://github.com/paritytech/polkadot/issues/7237 for more details.
// See: https://github.com/pezkuwichain/kurdistan-sdk/issues/170 for more details.
#[overseer::contextbounds(AvailabilityStore, prefix = self::overseer)]
async fn start_prune_all<Context>(
ctx: &mut Context,
+4 -4
View File
@@ -35,7 +35,7 @@ use pezkuwi_primitives::{
HeadData, Header, PersistedValidationData, ValidatorId,
};
use pezkuwi_primitives_test_helpers::TestCandidateBuilder;
use sp_keyring::Sr25519Keyring;
use pezsp_keyring::Sr25519Keyring;
mod columns {
pub const DATA: u32 = 0;
@@ -108,7 +108,7 @@ impl Default for TestState {
struct NoSyncOracle;
impl sp_consensus::SyncOracle for NoSyncOracle {
impl pezsp_consensus::SyncOracle for NoSyncOracle {
fn is_major_syncing(&self) -> bool {
false
}
@@ -123,9 +123,9 @@ fn test_harness<T: Future<Output = VirtualOverseer>>(
store: Arc<dyn Database>,
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());