git.delta.rocks / unique-network / refs/commits / e83438b2f76b

difftreelog

source

runtime/unique/build.rs154 Bsourcehistory
1use substrate_wasm_builder::WasmBuilder;23fn main() {4	WasmBuilder::new()5		.with_current_project()6		.import_memory()7		.export_heap_base()8		.build()9}