multiversx_chain_vm/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
pub mod crypto_functions;
pub mod display_util;
pub mod mem_conv;
pub mod tx_execution;
pub mod tx_mock;
pub mod types;
pub mod vm_err_msg;
pub mod vm_hooks;
pub mod with_shared;
pub mod world_mock;

pub use world_mock::BlockchainMock;

// Re-exporting the executor, for convenience.
pub use multiversx_chain_vm_executor as executor;

// Re-exporting the VM-core, for convenience.
pub use multiversx_chain_core as chain_core;

#[macro_use]
extern crate alloc;