kaspa-wasm 0.15.0

KASPA WASM bindings
Documentation
1
2
3
4
5
6
7
8
use wasm_bindgen::prelude::*;

/// Returns the version of the Rusty Kaspa framework.
/// @category General
#[wasm_bindgen]
pub fn version() -> String {
    env!("CARGO_PKG_VERSION").to_string()
}