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
@@ -0,0 +1,166 @@
// This file is part of Bizinikiwi.
// Copyright (C) Parity Technologies (UK) Ltd.
// SPDX-License-Identifier: Apache-2.0
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#![cfg(any(test, feature = "runtime-benchmarks"))]
#![allow(non_snake_case)]
//! Mock runtime that configures the `pezpallet_example_basic` to use dynamic params for testing.
use pezframe_support::{
construct_runtime, derive_impl,
dynamic_params::{dynamic_pallet_params, dynamic_params},
traits::EnsureOriginWithArg,
};
use crate as pezpallet_parameters;
use crate::*;
#[derive_impl(pezframe_system::config_preludes::TestDefaultConfig)]
impl pezframe_system::Config for Runtime {
type Block = pezframe_system::mocking::MockBlock<Runtime>;
type AccountData = pezpallet_balances::AccountData<<Self as pezpallet_balances::Config>::Balance>;
}
#[derive_impl(pezpallet_balances::config_preludes::TestDefaultConfig)]
impl pezpallet_balances::Config for Runtime {
type AccountStore = System;
}
#[docify::export]
#[dynamic_params(RuntimeParameters, pezpallet_parameters::Parameters::<Runtime>)]
pub mod dynamic_params {
use super::*;
#[dynamic_pallet_params]
#[codec(index = 3)]
pub mod pallet1 {
#[codec(index = 0)]
pub static Key1: u64 = 0;
#[codec(index = 1)]
pub static Key2: u32 = 1;
#[codec(index = 2)]
pub static Key3: u128 = 2;
}
#[dynamic_pallet_params]
#[codec(index = 1)]
pub mod pallet2 {
#[codec(index = 2)]
pub static Key1: u64 = 0;
#[codec(index = 1)]
pub static Key2: u32 = 2;
#[codec(index = 0)]
pub static Key3: u128 = 4;
}
#[dynamic_pallet_params]
#[codec(index = 2)]
pub mod nis {
#[codec(index = 0)]
pub static Target: u64 = 0;
}
#[dynamic_pallet_params]
#[codec(index = 4)]
pub mod somE_weird_SPElLInG_s {
#[codec(index = 0)]
pub static V: u64 = 0;
}
}
#[docify::export(benchmarking_default)]
#[cfg(feature = "runtime-benchmarks")]
impl Default for RuntimeParameters {
fn default() -> Self {
RuntimeParameters::Pallet1(dynamic_params::pallet1::Parameters::Key1(
dynamic_params::pallet1::Key1,
Some(123),
))
}
}
#[docify::export]
mod custom_origin {
use super::*;
pub struct ParamsManager;
impl EnsureOriginWithArg<RuntimeOrigin, RuntimeParametersKey> for ParamsManager {
type Success = ();
fn try_origin(
origin: RuntimeOrigin,
key: &RuntimeParametersKey,
) -> Result<Self::Success, RuntimeOrigin> {
// Account 123 is allowed to set parameters in benchmarking only:
#[cfg(feature = "runtime-benchmarks")]
if ensure_signed(origin.clone()).is_ok_and(|acc| acc == 123) {
return Ok(());
}
match key {
RuntimeParametersKey::SomEWeirdSPElLInGS(_) |
RuntimeParametersKey::Nis(_) |
RuntimeParametersKey::Pallet1(_) => ensure_root(origin.clone()),
RuntimeParametersKey::Pallet2(_) => ensure_signed(origin.clone()).map(|_| ()),
}
.map_err(|_| origin)
}
#[cfg(feature = "runtime-benchmarks")]
fn try_successful_origin(_key: &RuntimeParametersKey) -> Result<RuntimeOrigin, ()> {
Ok(RuntimeOrigin::signed(123))
}
}
}
#[docify::export(impl_config)]
#[derive_impl(pezpallet_parameters::config_preludes::TestDefaultConfig)]
impl Config for Runtime {
type AdminOrigin = custom_origin::ParamsManager;
// RuntimeParameters is injected by the `derive_impl` macro.
// RuntimeEvent is injected by the `derive_impl` macro.
// WeightInfo is injected by the `derive_impl` macro.
}
#[docify::export(usage)]
impl pezpallet_example_basic::Config for Runtime {
// Use the dynamic key in the pallet config:
type MagicNumber = dynamic_params::pallet1::Key1;
type WeightInfo = ();
}
construct_runtime!(
pub enum Runtime {
System: pezframe_system,
PalletParameters: crate,
Example: pezpallet_example_basic,
Balances: pezpallet_balances,
}
);
pub fn new_test_ext() -> pezsp_io::TestExternalities {
let mut ext = pezsp_io::TestExternalities::new(Default::default());
ext.execute_with(|| System::set_block_number(1));
ext
}
pub(crate) fn assert_last_event(generic_event: RuntimeEvent) {
let events = pezframe_system::Pallet::<Runtime>::events();
// compare to the last event record
let pezframe_system::EventRecord { event, .. } = &events.last().expect("Event expected");
assert_eq!(event, &generic_event);
}