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
+139
View File
@@ -0,0 +1,139 @@
[package]
name = "pezkuwi-sdk-frame"
version = "0.1.0"
authors = [
"Kurdistan Tech Institute <info@pezkuwichain.io>",
"Parity Technologies <admin@parity.io>",
]
edition.workspace = true
license = "Apache-2.0"
homepage.workspace = true
repository.workspace = true
description = "The single package to get you started with building frame pallets and runtimes"
[lints]
workspace = true
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
# external deps
codec = { features = ["derive"], workspace = true }
scale-info = { features = ["derive"], workspace = true }
serde = { workspace = true }
# primitive deps, used for developing FRAME pallets.
pezsp-arithmetic = { workspace = true }
pezsp-core = { workspace = true }
pezsp-io = { workspace = true }
pezsp-runtime = { workspace = true }
# frame deps, for developing FRAME pallets.
pezframe-support = { workspace = true }
pezframe-system = { workspace = true }
# primitive types used for developing FRAME runtimes.
pezsp-api = { optional = true, workspace = true }
pezsp-block-builder = { optional = true, workspace = true }
pezsp-consensus-aura = { optional = true, workspace = true }
pezsp-consensus-grandpa = { optional = true, workspace = true }
pezsp-genesis-builder = { optional = true, workspace = true }
pezsp-inherents = { optional = true, workspace = true }
pezsp-keyring = { optional = true, workspace = true }
pezsp-offchain = { optional = true, workspace = true }
pezsp-session = { optional = true, workspace = true }
pezsp-storage = { optional = true, workspace = true }
pezsp-transaction-pool = { optional = true, workspace = true }
pezsp-version = { optional = true, workspace = true }
pezframe-executive = { optional = true, workspace = true }
pezframe-system-rpc-runtime-api = { optional = true, workspace = true }
# Used for runtime benchmarking
pezframe-benchmarking = { optional = true, workspace = true }
pezframe-system-benchmarking = { optional = true, workspace = true }
# Used for try-runtime
pezframe-try-runtime = { optional = true, workspace = true }
docify = { workspace = true }
log = { workspace = true }
[features]
default = ["runtime", "std"]
std = [
"codec/std",
"pezframe-benchmarking?/std",
"pezframe-executive?/std",
"pezframe-support/std",
"pezframe-system-benchmarking?/std",
"pezframe-system-rpc-runtime-api?/std",
"pezframe-system/std",
"pezframe-try-runtime?/std",
"log/std",
"scale-info/std",
"serde/std",
"pezsp-api?/std",
"pezsp-arithmetic/std",
"pezsp-block-builder?/std",
"pezsp-consensus-aura?/std",
"pezsp-consensus-grandpa?/std",
"pezsp-core/std",
"pezsp-genesis-builder?/std",
"pezsp-inherents?/std",
"pezsp-io/std",
"pezsp-keyring?/std",
"pezsp-offchain?/std",
"pezsp-runtime/std",
"pezsp-session?/std",
"pezsp-storage/std",
"pezsp-transaction-pool?/std",
"pezsp-version?/std",
]
runtime-benchmarks = [
"pezframe-benchmarking/runtime-benchmarks",
"pezframe-executive?/runtime-benchmarks",
"pezframe-support/runtime-benchmarks",
"pezframe-system-benchmarking/runtime-benchmarks",
"pezframe-system-rpc-runtime-api?/runtime-benchmarks",
"pezframe-system/runtime-benchmarks",
"pezframe-try-runtime?/runtime-benchmarks",
"pezsp-api?/runtime-benchmarks",
"pezsp-block-builder?/runtime-benchmarks",
"pezsp-consensus-aura?/runtime-benchmarks",
"pezsp-consensus-grandpa?/runtime-benchmarks",
"pezsp-genesis-builder?/runtime-benchmarks",
"pezsp-inherents?/runtime-benchmarks",
"pezsp-io/runtime-benchmarks",
"pezsp-keyring?/runtime-benchmarks",
"pezsp-offchain?/runtime-benchmarks",
"pezsp-runtime/runtime-benchmarks",
"pezsp-session?/runtime-benchmarks",
"pezsp-transaction-pool?/runtime-benchmarks",
"pezsp-version?/runtime-benchmarks",
]
try-runtime = [
"pezframe-executive/try-runtime",
"pezframe-support/try-runtime",
"pezframe-system/try-runtime",
"pezframe-try-runtime/try-runtime",
"pezsp-runtime/try-runtime",
]
experimental = ["pezframe-support/experimental"]
runtime = [
"pezframe-executive",
"pezframe-system-rpc-runtime-api",
"pezsp-api",
"pezsp-block-builder",
"pezsp-consensus-aura",
"pezsp-consensus-grandpa",
"pezsp-genesis-builder",
"pezsp-inherents",
"pezsp-keyring",
"pezsp-offchain",
"pezsp-session",
"pezsp-storage",
"pezsp-transaction-pool",
"pezsp-version",
]