dharitri-vm-executor 0.2.0

Dharitri VM executor interface
Documentation
  • Coverage
  • 7.37%
    32 out of 434 items documented0 out of 0 items with examples
  • Size
  • Source code size: 79.17 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 7.60 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Homepage
  • Documentation
  • TerraDharitri/drt-rs-vm-executor
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • mangonui

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.