gwasm-api

A Rust library for interfacing your native apps with gWasm.

Crates.io version Download docs.rs docs

Guide

gWasm is Golem's new meta use-case which allows Golem's developers/users to deploy their Wasm apps on Golem Network. This API providers convenience structures and functions for creating a gWasm task and connecting with Golem Network all from native Rust code.

```toml

Cargo.toml

gwasm-api = "0.3" ```

Example

```rust use gwasm_api::prelude::*; use anyhow::Result; use std::path::PathBuf;

struct ProgressTracker;

impl ProgressUpdate for ProgressTracker { fn update(&self, progress: f64) { println!("Current progress = {}", progress); } }

fn main() -> Result<()> { let binary = GWasmBinary { js: &[0u8; 100], // JavaScript file generated by Emscripten wasm: &[0u8; 100], // Wasm binary generated by Emscripten }; let task = TaskBuilder::trynew("workspace", binary)? .pushsubtaskdata(vec![0u8; 100]) .build()?; let computedtask = compute( PathBuf::from("datadir"), "127.0.0.1".to_string(), 61000, Net::TestNet, task, ProgressTracker, )?;

for subtask in computed_task.subtasks {
    for (_, reader) in subtask.data {
        assert!(!reader.buffer().is_empty());
    }
}

Ok(())

} ```

More examples

License

Licensed under GPLv3