mirror of
https://github.com/pezkuwichain/pez-solochain-template.git
synced 2026-06-14 04:01:11 +00:00
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:
+5
-5
@@ -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",
|
||||
]
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user