@iqai/mcp-fraxlend
Version:
Mcp server for Fraxlend access
22 lines • 729 B
JavaScript
import { formatEther } from "viem";
export default function formatNumber(value) {
// For numbers less than 1, use 5 decimals
if (value < 1) {
if (value === 0.0) {
return "0";
}
return value.toFixed(5);
}
// For numbers less than 100, use 2 decimals
if (value < 100) {
return value.toFixed(2);
}
// For larger numbers, use compact notation with 2 decimal places
return new Intl.NumberFormat("en-US", {
notation: "compact",
minimumFractionDigits: 2,
maximumFractionDigits: 2,
}).format(value);
}
export const formatWeiToNumber = (wei) => formatNumber(Number(formatEther(BigInt(wei))));
//# sourceMappingURL=format-number.js.map