Show the crate…
1 unstable release
0.1.0 | Jan 29, 2022 |
---|
#523 in #substrate
Used in 3 crates
74KB
1.5K
SLoC
Inkpad Runtime
The wasm executor of ink! contract
This repo provides:
- Parsing *.contract to ABI and wasm source
- A wasm runtime for executing ink! contract
- Few interfaces
Design
- - - - - - - - - - - - - - - - - - - - -
| ink! contract | ---> | inkpad | ---> | anywhere |
- - - - - - - - - - - - - - - - - - - - -
Example
use inkpad_runtime::Runtime;
#[test]
fn test_flipper() {
let mut rt = Runtime::from_contract(include_bytes!("../flipper.contract"))
.expect("Create runtime failed");
rt.deploy("default", &[]).expect("Deploy failed");
assert_eq!(&rt.call("get", &[]).expect("Call contract failed"), &[0]);
rt.deploy("new", &["true"]).expect("Deploy failed");
assert_eq!(&rt.call("get", &[]).expect("Call contract failed"), &[1]);
rt.call("flip", &[]).expect("Call contract failed");
assert_eq!(&rt.call("get", &[]).expect("Call contract failed"), &[0]);
}
LICENSE
MIT
Dependencies
~6–15MB
~218K SLoC