multiversx-chain-vm 0.23.1

MultiversX VM implementation and tooling
Documentation
1
2
3
4
5
6
7
8
9
use multiversx_chain_vm_executor::Executor;

use crate::host::runtime::RuntimeWeakRef;

pub fn new_experimental_executor(_runtime_ref: RuntimeWeakRef) -> Box<dyn Executor + Send + Sync> {
    panic!(
        "ExperimentalExecutor not available, need to activate features = [\"wasmer-experimental\"] in multiversx-sc-scenario or multiversx-chain-vm"
    )
}