fluid-contracts-public/test/js-scripts/bigMathVault/mulDivBigNumber.ts
2024-07-11 13:05:09 +00:00

52 lines
1.8 KiB
TypeScript

import Decimal from "decimal.js";
import { ethers } from "ethers";
const DECIMALS_DEBT_FACTOR = 16384;
const coefficient1 = process.argv[2];
const exponent1 = process.argv[3];
const number1 = process.argv[4];
const coefficientFromDivision = process.argv[5];
const exponentFromDivision = process.argv[6];
const decimalCoefficient1 = new Decimal(coefficient1.toString());
const decimalExponent1 = new Decimal(exponent1.toString());
const decimalCoefficientFromDivision = new Decimal(coefficientFromDivision.toString());
const normalNumber1 = decimalCoefficient1.mul(
new Decimal(2).pow(decimalExponent1.sub(DECIMALS_DEBT_FACTOR).toNumber())
);
const normalNumber2 = new Decimal(number1);
const TWO_POWER_64 = new Decimal(18446744073709551616);
const normalDivJSResult = normalNumber1.mul(normalNumber2).div(TWO_POWER_64);
let normalDivSolidityResult;
var exponentResult = new Decimal(exponentFromDivision).sub(DECIMALS_DEBT_FACTOR);
if (exponentResult.isNegative()) {
var divisionResult = new Decimal(1).div(new Decimal(2).pow(exponentResult.abs()));
normalDivSolidityResult = divisionResult.mul(decimalCoefficientFromDivision);
} else {
normalDivSolidityResult = decimalCoefficientFromDivision.mul(new Decimal(2).pow(exponentResult));
}
// Calculate the absolute difference
const diff = normalDivJSResult.sub(normalDivSolidityResult).abs();
// Calculate the average of the two values
const average = normalDivJSResult.add(normalDivSolidityResult).div(2);
// Calculate the percentage difference
const percentageDiff = diff.div(average).mul(100);
// Tolerance: (1e-8%)
const tolerance = new Decimal("1e-8");
// Compare percentage difference with tolerance
if (percentageDiff.lte(tolerance)) {
process.stdout.write(ethers.utils.defaultAbiCoder.encode(["bool"], [true]));
} else {
process.stdout.write(ethers.utils.defaultAbiCoder.encode(["bool"], [false]));
}