bn.js bindings for Rust & WebAssembly
Write Rust code that uses BN ```rust use bnrs::BN; use wasmbindgen::prelude::*;
pub fn sum(a: BN, b: BN) -> ResultBNError
implements Into<JsValue>
, so we can use ?
here
let a = u128::tryfrom(a)?;
let b: u128 = b.tryinto()?;
let result = a + b;
Ok(result.into())
} ```
Call it from JavaScript ```javascript import {sum} from './pkg' import BN from 'bn.js'
const a = new BN(2, 10) const b = new BN(2, 10)
console.log(sum(a, b)) // Call Rust code with BN passed and returned ```
shell
$ cd example
$ yarn
$ yarn start