odra_vm/
lib.rs

1#![doc = "OdraVM is a mock VM for testing contracts written id Odra Framework."]
2#![doc = "It is a simple implementation of a mock backend with a minimal set of features"]
3#![doc = "that allows testing the code written in Odra without compiling the contract"]
4#![doc = "to the target architecture and spinning up the blockchain."]
5#![allow(dead_code)]
6#![allow(unused_imports)]
7#![allow(unused_variables)]
8
9mod odra_vm_contract_env;
10mod odra_vm_host;
11mod panic_hook;
12mod vm;
13
14pub use odra_vm_host::OdraVmHost;
15pub use vm::OdraVm;