contracts-node-runtime 0.42.0

Runtime configured for smart contracts via `pallet-contracts` and `pallet-revive`.
Documentation
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();
	}
}