mirror of
https://github.com/pezkuwichain/pezkuwi-runtime-templates.git
synced 2026-04-22 02:07:55 +00:00
d839cbd92b
Applied global changes: Polkadot->Pezkuwi, Parachain->TeyrChain, pallet->pezpallet, frame->pezframe. Updated authors in Cargo.toml to include Kurdistan Tech Institute and pezkuwichain team. Used Cargo aliases to maintain SDK compatibility while using rebranded names in source code.
17 lines
482 B
Rust
17 lines
482 B
Rust
#[cfg(all(not(feature = "metadata-hash"), feature = "std"))]
|
|
fn main() {
|
|
bizinikiwi_wasm_builder::WasmBuilder::build_using_defaults();
|
|
}
|
|
|
|
#[cfg(all(feature = "metadata-hash", feature = "std"))]
|
|
fn main() {
|
|
bizinikiwi_wasm_builder::WasmBuilder::init_with_defaults()
|
|
.enable_metadata_hash("UNIT", 12)
|
|
.build();
|
|
}
|
|
|
|
/// The wasm builder is deactivated when compiling
|
|
/// this crate for wasm to speed up the compilation.
|
|
#[cfg(not(feature = "std"))]
|
|
fn main() {}
|