1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
extern crate bit_set;
extern crate ethcore_builtin as builtin;
extern crate ethereum_types;
extern crate keccak_hash as hash;
extern crate memory_cache;
extern crate num_bigint;
extern crate parity_bytes as bytes;
extern crate parity_util_mem;
extern crate parking_lot;
extern crate vm;
#[macro_use]
extern crate lazy_static;
#[cfg_attr(feature = "evm-debug", macro_use)]
extern crate log;
#[cfg(test)]
extern crate hex_literal;
#[cfg(test)]
extern crate rustc_hex;
pub mod evm;
pub mod interpreter;
#[macro_use]
pub mod factory;
mod instructions;
mod vmtype;
#[cfg(test)]
mod tests;
pub use self::{
evm::{CostType, FinalizationResult, Finalize},
factory::Factory,
instructions::{Instruction, InstructionInfo},
vmtype::VMType,
};
pub use vm::{
ActionParams, CallType, CleanDustMode, ContractCreateResult, CreateContractAddress, EnvInfo,
Ext, GasLeft, MessageCallResult, ReturnData, Schedule,
};