bn-rs 0.2.4

bn.js and ethers.js BigNumber bindings for Rust & WebAssembly
Documentation
1
2
3
4
5
6
7
#[cfg(feature = "ethers-js")]
pub use bignumber::{BigNumber, BigNumberError};
#[cfg(feature = "bn-js")]
pub use bn::{BNError, BN};

mod bignumber;
mod bn;