3 releases (breaking)

0.3.0 Nov 15, 2024
0.2.0 Oct 12, 2023
0.1.0 Jun 15, 2023

#14 in #multiversx

Download history 755/week @ 2024-11-23 523/week @ 2024-11-30 658/week @ 2024-12-07 521/week @ 2024-12-14 340/week @ 2024-12-21 178/week @ 2024-12-28 911/week @ 2025-01-04 667/week @ 2025-01-11 658/week @ 2025-01-18 599/week @ 2025-01-25 427/week @ 2025-02-01 723/week @ 2025-02-08 641/week @ 2025-02-15 1019/week @ 2025-02-22 959/week @ 2025-03-01 604/week @ 2025-03-08

3,320 downloads per month
Used in 17 crates (4 directly)

GPL-3.0-only

82KB
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