-
Here's the example from the README:
```
var result = new BigNumber("100000000000000000").plus(1);
var expected = "100000000000000001";
result.should.be.bignumber.equal(expected);
```
It work…
-
Hi,
there are some occasions when BigNumber is converted to plain object and loses BigNUmber prototype - for example when it is taken from `window.history.state`. In such situation it's a bit unco…
-
## The dependency [oer-utils](https://github.com/interledgerjs/oer-utils) was updated from `3.0.1` to `3.1.0`.
🚨 [View failing branch](https://github.com/interledgerjs/ilp-packet/compare/master...in…
-
We don't currently check that, e.g., the values in the input BIOM table are within the "representable" range for JavaScript (which iirc is -2^53 + 1 to 2^53 - 1, or something like that). This means th…
-
## The dependency [oer-utils](https://github.com/interledgerjs/oer-utils) was updated from `3.0.1` to `3.1.0`.
🚨 [View failing branch](https://github.com/interledgerjs/ilp-protocol-ildcp/compare/mas…
-
## The dependency [oer-utils](https://github.com/interledgerjs/oer-utils) was updated from `3.0.1` to `3.1.0`.
🚨 [View failing branch](https://github.com/interledgerjs/ilp-protocol-stream/compare/ma…
-
I have a problem using @mathiasverraes Money library: https://github.com/mathiasverraes/money
becuase max integer in 32 bits systems is to small for bitcoin becuase it uses 8 decimal places. See
htt…
-
-
I noticed that there is no size check of exponential part. If I pass something like this:
```
1.33E+3333333333333333333333
```
It will cause "Allowed memory size exhausted" error.
-
Currently, we store listing prices in ETH throughout the DApp (and in origin-js). This is bad practice for monetary values, as rounding problems can occur when dealing with real values instead of ints…