From c85bac93432e1904f37660dd323c86ece51bbd8b Mon Sep 17 00:00:00 2001 From: void-57 Date: Tue, 27 Jan 2026 05:27:03 +0530 Subject: [PATCH] feat: Increase displayed decimal precision for transaction amounts, balances, and total costs to 10 places. --- index.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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