Rebrand Solochain Template to PezkuwiChain

This commit applies the PezkuwiChain terminology to the Solochain Template.

Changes include:
- Renaming packages:
    - `solochain-template-node` -> `pez-solochain-template-node`
    - `solochain-template-runtime` -> `pez-solochain-template-runtime`
- Updating dependencies in `Cargo.toml` files.
- Fixing the `solochain-template-runtime` path in the root `Cargo.toml`.
- Updating `runtime/src/lib.rs` with new `spec_name` and `impl_name`.
- Rebranding documentation and comments (Polkadot -> Pezkuwi, Parachain -> TeyrChain).
- Updating `Dockerfile` binary names.
This commit is contained in:
google-labs-jules[bot]
2026-01-11 10:44:27 +00:00
parent f5608df8bf
commit c297b0f009
9 changed files with 38 additions and 38 deletions
+5 -5
View File
@@ -1,6 +1,6 @@
[package]
name = "solochain-template-node"
description = "A solochain node template built with Substrate, part of Polkadot Sdk. (polkadot v1.14.0)"
name = "pez-solochain-template-node"
description = "A solochain node template built with Substrate, part of Pezkuwi Sdk. (pezkuwi v1.14.0)"
version = "0.1.0"
license = "Unlicense"
authors.workspace = true
@@ -49,7 +49,7 @@ pallet-transaction-payment = { version = "36.0.0", workspace = true }
pallet-transaction-payment-rpc = { version = "38.0.0", workspace = true, default-features = true }
substrate-frame-rpc-system = { version = "36.0.0", workspace = true, default-features = true }
frame-benchmarking-cli = { version = "40.0.0", workspace = true, default-features = true }
solochain-template-runtime = { version = "0.1.0", workspace = true }
pez-solochain-template-runtime = { version = "0.1.0", workspace = true }
[build-dependencies]
substrate-build-script-utils = { version = "11.0.0", workspace = true, default-features = true }
@@ -61,7 +61,7 @@ runtime-benchmarks = [
"frame-benchmarking-cli/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"sc-service/runtime-benchmarks",
"solochain-template-runtime/runtime-benchmarks",
"pez-solochain-template-runtime/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
]
# Enable features that allow the runtime to be tried and debugged. Name might be subject to change
@@ -69,6 +69,6 @@ runtime-benchmarks = [
try-runtime = [
"frame-system/try-runtime",
"pallet-transaction-payment/try-runtime",
"solochain-template-runtime/try-runtime",
"pez-solochain-template-runtime/try-runtime",
"sp-runtime/try-runtime",
]
+1 -1
View File
@@ -6,7 +6,7 @@ use sp_core::{sr25519, Pair, Public};
use sp_runtime::traits::{IdentifyAccount, Verify};
// The URL for the telemetry server.
// const STAGING_TELEMETRY_URL: &str = "wss://telemetry.polkadot.io/submit/";
// const STAGING_TELEMETRY_URL: &str = "wss://telemetry.pezkuwi.io/submit/";
/// Specialized `ChainSpec`. This is a specialization of the general Substrate ChainSpec type.
pub type ChainSpec = sc_service::GenericChainSpec;