wevm-core 0.4.1

Waves Enterprise Virtual Machine for WASM smart-contracts
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod v0;
pub mod v1;

#[cfg(not(feature = "bindings"))]
use crate::runtime::Runtime;
#[cfg(not(feature = "bindings"))]
use wasmi::{Func, Store};

#[cfg(not(feature = "bindings"))]
pub type Module = fn(&mut Store<Runtime>) -> (String, String, Func);