Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
export function parseUnits(value: string, unitName?: BigNumberish): BigNumber {
if (typeof(unitName) === "string") {
const index = names.indexOf(unitName);
if (index !== -1) { unitName = 3 * index; }
}
return parseFixed(value, (unitName != null) ? unitName: 18);
}
export function parseUnits(value, unitName) {
if (typeof (unitName) === "string") {
const index = names.indexOf(unitName);
if (index !== -1) {
unitName = 3 * index;
}
}
return parseFixed(value, (unitName != null) ? unitName : 18);
}
export function formatEther(wei) {