bn.js bindings for Rust & WebAssembly with primitive-types support
Write Rust code that uses BN
```rust use std::str::FromStr;
use primitivetypes::{H160, U128}; use wasmbindgen::prelude::*;
use bn_rs::BN;
pub fn sum(a: BN, b: BN) -> ResultBNError
implements Into<JsValue>
, so we can use ?
here
let a = u128::tryfrom(a)?; // std uints are supported
let b: U128 = b.tryinto()?; // primitive-types uints supported too
let result = a + b.as_u128();
Ok(result.into())
}
pub fn isdead(hash: BN) -> Result
Ok(hash == dead)
} ```
Call it from JavaScript
```javascript import {sum, is_dead} from './pkg' import BN from 'bn.js'
// Initialize bn.js numbers const a = new BN(2, 10) const b = new BN(2, 10)
// Call Rust code with BN passed and returned console.log(sum(a, b)) // == new BN(4, 10) console.log(is_dead(new BN('dead', 'hex'))) // == true ```
shell
$ cd example
$ yarn
$ yarn start