import React from "react"; import { BigNumber, FixedNumber } from "@ethersproject/bignumber"; import { commify } from "@ethersproject/units"; type ETH2USDValueProps = { ethAmount: BigNumber; eth2USDValue: BigNumber; }; /** * Basic display of ETH -> USD values WITHOUT box decoration, only * text formatting. * * USD amounts are displayed commified with 2 decimals places and $ prefix, * i.e., "$1,000.00". */ const ETH2USDValue: React.FC = ({ ethAmount, eth2USDValue, }) => { const value = ethAmount.mul(eth2USDValue).div(10 ** 8); return ( $ {commify(FixedNumber.fromValue(value, 18).round(2).toString())} ); }; export default React.memo(ETH2USDValue);