Add ETH symbol, round number to 3 digits
This commit is contained in:
parent
c176fc5fa2
commit
219e5dc45f
|
@ -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>
|
||||||
|
|
Loading…
Reference in New Issue