odra-vm 2.9.1

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

mod odra_vm_contract_env;
mod odra_vm_host;
mod panic_hook;
mod vm;

pub use odra_vm_host::OdraVmHost;
pub use vm::OdraVm;