1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// Copyright (c) Aptos
// SPDX-License-Identifier: Apache-2.0
///! MoveVM and Session wrapped, to make sure Aptos natives and extensions are always installed and
///! taken care of after session finish.
mod resolver;
mod session;
mod transaction_context;
mod vm;
pub use crate::move_vm_ext::{
resolver::MoveResolverExt,
session::{SessionExt, SessionId, SessionOutput},
transaction_context::{
test_transaction_context_natives, transaction_context_natives, NativeTransactionContext,
},
vm::MoveVmExt,
};