2 releases

0.0.2 Aug 30, 2024
0.0.1 Aug 27, 2024

#194 in #vm

Download history 250/week @ 2024-08-24 91/week @ 2024-08-31 25/week @ 2024-09-07 48/week @ 2024-09-14 45/week @ 2024-09-21 19/week @ 2024-09-28 4/week @ 2024-10-05 14/week @ 2024-10-12 10/week @ 2024-10-19 5/week @ 2024-10-26 25/week @ 2024-11-02

54 downloads per month
Used in 6 crates (2 directly)

GPL-3.0-only

80KB
1.5K SLoC

drt-chain-vm-executor

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