From d384d41c829dbc3a9df02ed3724372480a7fc054 Mon Sep 17 00:00:00 2001 From: sneak Date: Wed, 25 Feb 2026 16:06:33 +0700 Subject: [PATCH] Show full addresses in wallet list Display complete addresses instead of truncated ones. Address poisoning attacks use matching prefixes/suffixes to fool users into copying fraud addresses. Showing the full address mitigates this. --- src/popup/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/popup/index.js b/src/popup/index.js index d1ac45f..5720d51 100644 --- a/src/popup/index.js +++ b/src/popup/index.js @@ -134,7 +134,7 @@ function renderWalletList() { wallet.addresses.forEach((addr, ai) => { html += `
`; - html += `${truncateAddress(addr.address)}`; + html += `${addr.address}`; html += `${addr.balance} ETH`; html += `
`; });