Add ETH symbol, round number to 3 digits

This commit is contained in:
Mikhail Mikheev 2019-09-16 17:18:31 +04:00
parent c176fc5fa2
commit 219e5dc45f
1 changed files with 3 additions and 1 deletions

View File

@ -85,8 +85,9 @@ const ReviewComponent = ({ values, classes, userAccount }: Props) => {
const { fromWei, toBN } = web3.utils const { fromWei, toBN } = web3.utils
const estimatedGasCosts = await estimateGasForDeployingSafe(addresses, numOwners, userAccount) const estimatedGasCosts = await estimateGasForDeployingSafe(addresses, numOwners, userAccount)
const gasCostsAsEth = fromWei(toBN(estimatedGasCosts), 'ether') const gasCostsAsEth = fromWei(toBN(estimatedGasCosts), 'ether')
const roundedGasCosts = parseFloat(gasCostsAsEth).toFixed(3)
if (isCurrent) { if (isCurrent) {
setGasCosts(gasCostsAsEth) setGasCosts(roundedGasCosts)
} }
} }
@ -164,6 +165,7 @@ const ReviewComponent = ({ values, classes, userAccount }: Props) => {
wallet. The creation will cost approximately wallet. The creation will cost approximately
{' '} {' '}
{gasCosts} {gasCosts}
{' '} ETH
. The exact amount will be determined by your wallet. . The exact amount will be determined by your wallet.
</Paragraph> </Paragraph>
</Row> </Row>