node-template-runtime 2.0.0

Tetcore node template runtime
1
2
3
4
5
6
7
8
9
use wasm_builder::WasmBuilder;

fn main() {
	WasmBuilder::new()
		.with_current_project()
		.export_heap_base()
		.import_memory()
		.build()
}