2 unstable releases

0.2.0 Oct 12, 2023
0.1.0 Jun 15, 2023

#15 in #multiversx

Download history 408/week @ 2024-03-15 392/week @ 2024-03-22 342/week @ 2024-03-29 340/week @ 2024-04-05 372/week @ 2024-04-12 430/week @ 2024-04-19 254/week @ 2024-04-26 394/week @ 2024-05-03 373/week @ 2024-05-10 307/week @ 2024-05-17 355/week @ 2024-05-24 372/week @ 2024-05-31 240/week @ 2024-06-07 404/week @ 2024-06-14 265/week @ 2024-06-21 210/week @ 2024-06-28

1,188 downloads per month
Used in 17 crates (4 directly)

GPL-3.0-only

80KB
1.5K SLoC

multiversx-chain-vm-executor

The MultiversX VM is composed of two parts:

  • A high-level VM, that connects to the protocol and manages the environment of the smart contract execution
  • A low-level component, called "executor", whose sole purpose is running WebAssembly code, as given. The only current implementation of this component is a wrapper around Wasmer 2.2.

This crate contains the Rust implementation of the interface between the two VM layers.

There are two parts of this interface:

  • The one going "forwards", from high-level, to low-level, used for starting execution: Executor, Instance.
  • The one going "backwards", from low-level, to high-level, used by the executor to request data: VMHooks.

No runtime deps