mirror of
https://github.com/Instadapp/fluid-contracts-public.git
synced 2024-07-29 21:57:37 +00:00
56 lines
2.0 KiB
TypeScript
56 lines
2.0 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 coefficient2 = process.argv[4];
|
||
|
const exponent2 = process.argv[5];
|
||
|
const coefficientFromDivision = process.argv[6];
|
||
|
const exponentFromDivision = process.argv[7];
|
||
|
|
||
|
const decimalCoefficient1 = new Decimal(coefficient1.toString());
|
||
|
const decimalExponent1 = new Decimal(exponent1.toString());
|
||
|
const decimalCoefficient2 = new Decimal(coefficient2.toString());
|
||
|
const decimalExponent2 = new Decimal(exponent2.toString());
|
||
|
const decimalCoefficientFromDivision = new Decimal(coefficientFromDivision.toString());
|
||
|
|
||
|
const normalNumber1 = decimalCoefficient1.mul(
|
||
|
new Decimal(2).pow(decimalExponent1.sub(DECIMALS_DEBT_FACTOR).toNumber())
|
||
|
);
|
||
|
const normalNumber2 = decimalCoefficient2.mul(
|
||
|
new Decimal(2).pow(decimalExponent2.sub(DECIMALS_DEBT_FACTOR).toNumber())
|
||
|
);
|
||
|
|
||
|
const normalDivJSResult = normalNumber1.div(normalNumber2);
|
||
|
|
||
|
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]));
|
||
|
}
|