git.delta.rocks / unique-network / refs/commits / 4e76702c569f

difftreelog

source

runtime/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}