tREADME.md - wasm-runtime - A wasm runtime
git clone https://git.parazyd.org/wasm-runtime
Log
Files
Refs
README
LICENSE
---
tREADME.md (358B)
---
     1 wasm-runtime
     2 ============
     3 
     4 Experiments with WASM runtime.
     5 
     6 ```
     7 $ rustup target add wasm32-unknown-unknown
     8 $ make
     9 ```
    10 
    11 * Smart contract is in [`smart-contract/src/lib.rs`](smart-contract/src/lib.rs)
    12 * Contract helpers are in [`drk-sdk/src`](drk-sdk/src)
    13 * wasm runtime is in [`src`](src)
    14 * Example usage is in [`src/runtime.rs`](src/runtime.rs) at the bottom