mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 20:29:23 +00:00
11 lines
208 B
Rust
11 lines
208 B
Rust
use substrate_wasm_builder::WasmBuilder;
|
|
|
|
fn main() {
|
|
WasmBuilder::new()
|
|
.with_current_project()
|
|
.disable_runtime_version_section_check()
|
|
.export_heap_base()
|
|
.import_memory()
|
|
.build()
|
|
}
|