evm 0.14.0

SputnikVM - a Portable Blockchain Virtual Machine
Documentation
1
2
3
4
5
6
7
8
9
10
#![cfg_attr(not(feature = "std"), no_std)]

extern crate alloc;

pub use evm_core::*;
pub use evm_runtime::*;
pub use evm_gasometer as gasometer;

pub mod executor;
pub mod backend;