multiversx_chain_vm/lib.rs
1pub mod crypto_functions;
2pub mod display_util;
3pub mod mem_conv;
4pub mod tx_execution;
5pub mod tx_mock;
6pub mod types;
7pub mod vm_err_msg;
8pub mod vm_hooks;
9pub mod with_shared;
10pub mod world_mock;
11
12pub use world_mock::BlockchainMock;
13
14// Re-exporting the executor, for convenience.
15pub use multiversx_chain_vm_executor as executor;
16
17// Re-exporting the VM-core, for convenience.
18pub use multiversx_chain_core as chain_core;
19
20#[macro_use]
21extern crate alloc;