379cb741ed
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.
83 lines
2.3 KiB
Rust
83 lines
2.3 KiB
Rust
// Copyright (C) Parity Technologies (UK) Ltd.
|
|
// This file is part of Pezcumulus.
|
|
|
|
// Pezcumulus is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Pezcumulus is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Pezcumulus. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#[cfg(feature = "std")]
|
|
fn main() {
|
|
use bizinikiwi_wasm_builder::WasmBuilder;
|
|
|
|
WasmBuilder::init_with_defaults()
|
|
.enable_feature("async-backing")
|
|
.import_memory()
|
|
.build();
|
|
|
|
WasmBuilder::init_with_defaults()
|
|
.enable_feature("increment-spec-version")
|
|
.set_file_name("wasm_binary_spec_version_incremented.rs")
|
|
.build();
|
|
|
|
WasmBuilder::init_with_defaults()
|
|
.enable_feature("elastic-scaling")
|
|
.import_memory()
|
|
.set_file_name("wasm_binary_elastic_scaling_mvp.rs")
|
|
.build();
|
|
|
|
WasmBuilder::new()
|
|
.with_current_project()
|
|
.enable_feature("elastic-scaling")
|
|
.import_memory()
|
|
.set_file_name("wasm_binary_elastic_scaling.rs")
|
|
.build();
|
|
|
|
WasmBuilder::new()
|
|
.with_current_project()
|
|
.enable_feature("elastic-scaling-500ms")
|
|
.import_memory()
|
|
.set_file_name("wasm_binary_elastic_scaling_500ms.rs")
|
|
.build();
|
|
|
|
WasmBuilder::new()
|
|
.with_current_project()
|
|
.enable_feature("elastic-scaling-multi-block-slot")
|
|
.import_memory()
|
|
.set_file_name("wasm_binary_elastic_scaling_multi_block_slot.rs")
|
|
.build();
|
|
|
|
WasmBuilder::new()
|
|
.with_current_project()
|
|
.enable_feature("relay-parent-offset")
|
|
.import_memory()
|
|
.set_file_name("wasm_binary_relay_parent_offset.rs")
|
|
.build();
|
|
|
|
WasmBuilder::new()
|
|
.with_current_project()
|
|
.enable_feature("sync-backing")
|
|
.import_memory()
|
|
.set_file_name("wasm_binary_sync_backing.rs")
|
|
.build();
|
|
|
|
WasmBuilder::new()
|
|
.with_current_project()
|
|
.enable_feature("elastic-scaling-12s-slot")
|
|
.enable_feature("elastic-scaling")
|
|
.import_memory()
|
|
.set_file_name("wasm_binary_elastic_scaling_12s_slot.rs")
|
|
.build();
|
|
}
|
|
|
|
#[cfg(not(feature = "std"))]
|
|
fn main() {}
|