1 2 3 4 5 6 7 8 9 10
fn main() { #[cfg(feature = "std")] { substrate_wasm_builder::WasmBuilder::new() .with_current_project() .export_heap_base() .import_memory() .build(); } }