5 releases (stable)

new 1.0.4 Mar 18, 2025
1.0.3 Mar 3, 2025
0.2.0 Jan 9, 2025
0.0.3 Jan 14, 2025

#118 in Magic Beans

Download history 289/week @ 2025-01-09 108/week @ 2025-01-16 46/week @ 2025-01-23 16/week @ 2025-01-30 13/week @ 2025-02-06 20/week @ 2025-02-13 32/week @ 2025-02-20 401/week @ 2025-02-27 93/week @ 2025-03-06 78/week @ 2025-03-13

607 downloads per month
Used in 8 crates (2 directly)

GPL-3.0-only

82KB
1.5K SLoC

dharitri-vm-executor

The DharitrI 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