14 lines
724 B
JavaScript
14 lines
724 B
JavaScript
import { BIGINT_0, BIGINT_1 } from './constants.js';
|
|
/** Easy conversion from Gwei to wei */
|
|
export const GWEI_TO_WEI = BigInt(1000000000);
|
|
export function formatBigDecimal(numerator, denominator, maxDecimalFactor) {
|
|
if (denominator === BIGINT_0) {
|
|
denominator = BIGINT_1;
|
|
}
|
|
const full = numerator / denominator;
|
|
const fraction = ((numerator - full * denominator) * maxDecimalFactor) / denominator;
|
|
// zeros to be added post decimal are number of zeros in maxDecimalFactor - number of digits in fraction
|
|
const zerosPostDecimal = String(maxDecimalFactor).length - 1 - String(fraction).length;
|
|
return `${full}.${'0'.repeat(zerosPostDecimal)}${fraction}`;
|
|
}
|
|
//# sourceMappingURL=units.js.map
|