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

difftreelog

source

runtime/build.rs180 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}