2022-07-15 00:05:00 -04:00
|
|
|
use substrate_wasm_builder::WasmBuilder;
|
|
|
|
|
|
|
|
|
|
fn main() {
|
2025-08-08 23:58:25 -04:00
|
|
|
WasmBuilder::new()
|
|
|
|
|
.with_current_project()
|
|
|
|
|
.disable_runtime_version_section_check()
|
|
|
|
|
.export_heap_base()
|
|
|
|
|
.import_memory()
|
|
|
|
|
.build()
|
2022-07-15 00:05:00 -04:00
|
|
|
}
|