mirror of
https://github.com/pezkuwichain/pez-minimal-template.git
synced 2026-07-24 04:15:41 +00:00
4abe236ff2
This commit implements a comprehensive rebrand from polkadot-sdk to pezkuwi-sdk following the terminology mapping: - Polkadot → Pezkuwi - Substrate → Bizinikiwi - Frame → Pezframe - Pallet → Pezpallet - sp- → pezsp- - sc- → pezsc- ## Changes Made: ### Root Cargo.toml - Added [patch.crates-io] section mapping all pez* packages to pezkuwi-sdk fork - Updated workspace dependencies to use pez-prefixed names - Renamed pallets → pezpallets in workspace members ### Pezpallet Template (/pezpallets/template/) - Renamed package to `pezpallet-minimal-template` - Updated to use pezkuwi-sdk with pezframe_support - Changed struct from `Pallet<T>` to `Pezpallet<T>` - Updated macro usage to `#[pezkuwi_sdk::pezframe_support::pezpallet]` ### Runtime (/runtime/) - Renamed package to `pez-minimal-template-runtime` - Updated all dependencies to use pezkuwi-sdk features - Rebranded runtime construction with `#[frame_construct_runtime]` - Changed pallet references to use `Pezpallet<Runtime>` types - Updated attribute from `pallet_index` to `pezpallet_index` - Added pezsp-api feature requirement - Fixed API signatures for LazyBlock types (pezkuwi-sdk fork requirement) ### Node (/node/) - Renamed package to `pez-minimal-template-node` - Updated all imports to use pezsc-* and pezsp-* modules - Fixed build.rs to use `bizinikiwi_build_script_utils` ## Remaining Issues (3-4 errors): - `RUNTIME_API_VERSIONS` not being generated by impl_runtime_apis! macro - Runtime module visibility issues with `pub use runtime::*` - These appear to be macro expansion issues specific to pezkuwi-sdk fork internals ## Build Status: - Workspace structure: ✓ Complete - Dependencies: ✓ Configured - Pezpallet template: ✓ Compiles - Runtime: ⚠️ 3-4 macro-related errors remaining - Node: ⏳ Blocked by runtime errors The rebrand is functionally complete with only deep macro expansion issues remaining that require fork-specific knowledge or working examples.
43 lines
1.5 KiB
Rust
43 lines
1.5 KiB
Rust
// This file is part of pezkuwi-sdk.
|
|
|
|
// Copyright (C) Pezkuwi Foundation. and Kurdistan Blockchain Technologies Institute (KBTI) 2024.
|
|
// 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.
|
|
|
|
use pez_minimal_template_runtime::WASM_BINARY;
|
|
use pezkuwi_sdk::{
|
|
pezsc_service::{ChainType, Properties},
|
|
*,
|
|
};
|
|
|
|
/// This is a specialization of the general bizinikiwi ChainSpec type.
|
|
pub type ChainSpec = pezsc_service::GenericChainSpec;
|
|
|
|
fn props() -> Properties {
|
|
let mut properties = Properties::new();
|
|
properties.insert("tokenDecimals".to_string(), 0.into());
|
|
properties.insert("tokenSymbol".to_string(), "PEZ".into());
|
|
properties
|
|
}
|
|
|
|
pub fn development_chain_spec() -> Result<ChainSpec, String> {
|
|
Ok(ChainSpec::builder(WASM_BINARY.expect("Development wasm not available"), Default::default())
|
|
.with_name("Development")
|
|
.with_id("dev")
|
|
.with_chain_type(ChainType::Development)
|
|
.with_genesis_config_preset_name(pezsp_genesis_builder::DEV_RUNTIME_PRESET)
|
|
.with_properties(props())
|
|
.build())
|
|
}
|