ethers.js/src.ts/utils/bignumber.ts

163 lines
5.0 KiB
TypeScript
Raw Normal View History

2018-06-13 22:39:39 +03:00
'use strict';
/**
* BigNumber
*
* A wrapper around the BN.js object. We use the BN.js library
* because it is used by elliptic, so it is required regardles.
*
*/
import _BN from 'bn.js';
2018-06-17 23:47:28 +03:00
import { Arrayish, hexlify, isArrayish, isHexString } from './bytes';
import { defineReadOnly } from './properties';
2018-06-13 22:39:39 +03:00
import * as errors from '../utils/errors';
function _isBigNumber(value: any): value is BigNumber {
return isBigNumber(value);
}
export type BigNumberish = BigNumber | string | number | Arrayish;
export class BigNumber {
private readonly _bn: _BN.BN;
2018-06-13 22:39:39 +03:00
constructor(value: BigNumberish) {
2018-06-15 11:18:17 +03:00
errors.checkNew(this, BigNumber);
2018-06-13 22:39:39 +03:00
if (typeof(value) === 'string') {
if (isHexString(value)) {
if (value == '0x') { value = '0x0'; }
defineReadOnly(this, '_bn', new _BN.BN(value.substring(2), 16));
2018-06-13 22:39:39 +03:00
} else if (value[0] === '-' && isHexString(value.substring(1))) {
defineReadOnly(this, '_bn', (new _BN.BN(value.substring(3), 16)).mul(ConstantNegativeOne._bn));
2018-06-13 22:39:39 +03:00
} else if (value.match(/^-?[0-9]*$/)) {
if (value == '') { value = '0'; }
defineReadOnly(this, '_bn', new _BN.BN(value));
2018-06-13 22:39:39 +03:00
}
} else if (typeof(value) === 'number') {
if (Math.trunc(value) !== value) {
errors.throwError('underflow', errors.NUMERIC_FAULT, { operation: 'setValue', fault: 'underflow', value: value, outputValue: Math.trunc(value) });
}
try {
defineReadOnly(this, '_bn', new _BN.BN(value));
2018-06-13 22:39:39 +03:00
} catch (error) {
errors.throwError('overflow', errors.NUMERIC_FAULT, { operation: 'setValue', fault: 'overflow', details: error.message });
}
} else if (_BN.BN.isBN(value)) {
defineReadOnly(this, '_bn', value);
2018-06-13 22:39:39 +03:00
} else if (_isBigNumber(value)) {
defineReadOnly(this, '_bn', value._bn);
2018-06-13 22:39:39 +03:00
} else if (isArrayish(value)) {
defineReadOnly(this, '_bn', new _BN.BN(hexlify(value).substring(2), 16));
2018-06-13 22:39:39 +03:00
} else {
errors.throwError('invalid BigNumber value', errors.INVALID_ARGUMENT, { arg: 'value', value: value });
}
}
fromTwos(value: BigNumberish): BigNumber {
return new BigNumber(this._bn.fromTwos(value));
}
toTwos(value: BigNumberish): BigNumber {
return new BigNumber(this._bn.toTwos(value));
}
add(other: BigNumberish): BigNumber {
return new BigNumber(this._bn.add(bigNumberify(other)._bn));
}
sub(other: BigNumberish): BigNumber {
return new BigNumber(this._bn.sub(bigNumberify(other)._bn));
}
div(other: BigNumberish): BigNumber {
let o: BigNumber = bigNumberify(other)._bn;
if (o.isZero()) {
errors.throwError('division by zero', errors.NUMERIC_FAULT, { operation: 'divide', fault: 'division by zero' });
}
return new BigNumber(this._bn.div(o));
}
mul(other: BigNumberish): BigNumber {
return new BigNumber(this._bn.mul(bigNumberify(other)._bn));
}
mod(other: BigNumberish): BigNumber {
return new BigNumber(this._bn.mod(bigNumberify(other)._bn));
}
pow(other: BigNumberish): BigNumber {
return new BigNumber(this._bn.pow(bigNumberify(other)._bn));
}
maskn(value: BigNumberish): BigNumber {
return new BigNumber(this._bn.maskn(value));
}
eq(other: BigNumberish): boolean {
return this._bn.eq(bigNumberify(other)._bn);
}
lt(other: BigNumberish): boolean {
return this._bn.lt(bigNumberify(other)._bn);
}
lte(other: BigNumberish): boolean {
return this._bn.lte(bigNumberify(other)._bn);
}
gt(other: BigNumberish): boolean {
return this._bn.gt(bigNumberify(other)._bn);
}
gte(other: BigNumberish): boolean {
return this._bn.gte(bigNumberify(other)._bn);
}
isZero(): boolean {
return this._bn.isZero();
}
toNumber(): number {
try {
return this._bn.toNumber();
} catch (error) {
errors.throwError('overflow', errors.NUMERIC_FAULT, { operation: 'setValue', fault: 'overflow', details: error.message });
}
return null;
}
toString(): string {
return this._bn.toString(10);
}
toHexString(): string {
var hex = this._bn.toString(16);
if (hex.length % 2) { hex = '0' + hex; }
return '0x' + hex;
}
}
export function isBigNumber(value: any): boolean {
return (value._bn && value._bn.mod);
}
export function bigNumberify(value: BigNumberish): BigNumber {
if (_isBigNumber(value)) { return value; }
return new BigNumber(value);
}
export const ConstantNegativeOne: BigNumber = bigNumberify(-1);
export const ConstantZero: BigNumber = bigNumberify(0);
export const ConstantOne: BigNumber = bigNumberify(1);
export const ConstantTwo: BigNumber = bigNumberify(2);
export const ConstantWeiPerEther: BigNumber = bigNumberify(new _BN.BN('1000000000000000000'));