diff --git a/index.html b/index.html
index a4633e9..bd5ddf9 100644
--- a/index.html
+++ b/index.html
@@ -1054,7 +1054,7 @@
-
${amountPrefix}${tx.value.toFixed(8)} ${tx.symbol}
+
${amountPrefix}${tx.value.toFixed(10)} ${tx.symbol}
${directionText}
{ e.preventDefault(); checkBalance(displayAddress); }}>${displayAddress}
@@ -1168,12 +1168,12 @@
${txDetails.tokenTransfer ? html`
Token Transfer
-
${txDetails.tokenTransfer.value} ${txDetails.tokenTransfer.symbol}
+
${txDetails.tokenTransfer.value.toFixed(10)} ${txDetails.tokenTransfer.symbol}
` : html`
Value
-
${txDetails.value} ETH
+
${txDetails.value.toFixed(10)} ETH
`}
@@ -1372,7 +1372,7 @@
${address}
- Balance: ${ethBalance} ETH ${selectedAsset !== 'eth' ? html`| ${tokenBalance} ${selectedAsset.toUpperCase()}` : ''}
+ Balance: ${ethBalance.toFixed(10)} ETH ${selectedAsset !== 'eth' ? html`| ${tokenBalance.toFixed(10)} ${selectedAsset.toUpperCase()}` : ''}
`)
@@ -1512,7 +1512,7 @@
Total Cost (Est.):
- ${totalCostETH.toFixed(6)} ETH
+ ${totalCostETH.toFixed(10)} ETH