Compare commits
7 Commits
feature/82
...
8c071ae508
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8c071ae508 | ||
|
|
a3c2b8227a | ||
|
|
f9f3e7b85a | ||
| 812fc01a98 | |||
|
|
811c125cb9 | ||
|
|
3005813f2c | ||
|
|
5565e76796 |
@@ -577,6 +577,19 @@
|
|||||||
<div id="confirm-fee-amount" class="text-xs"></div>
|
<div id="confirm-fee-amount" class="text-xs"></div>
|
||||||
</div>
|
</div>
|
||||||
<div id="confirm-warnings" class="mb-2 hidden"></div>
|
<div id="confirm-warnings" class="mb-2 hidden"></div>
|
||||||
|
<div
|
||||||
|
id="confirm-recipient-warning"
|
||||||
|
class="mb-2"
|
||||||
|
style="visibility: hidden"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="border border-red-500 border-dashed p-2 text-xs font-bold text-red-500"
|
||||||
|
>
|
||||||
|
WARNING: The recipient address has ZERO transaction
|
||||||
|
history. This may indicate a fresh or unused address.
|
||||||
|
Double-check the address before sending.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div
|
<div
|
||||||
id="confirm-errors"
|
id="confirm-errors"
|
||||||
class="mb-2 border border-border border-dashed p-2 hidden"
|
class="mb-2 border border-border border-dashed p-2 hidden"
|
||||||
|
|||||||
@@ -25,7 +25,6 @@ const { decryptWithPassword } = require("../../shared/vault");
|
|||||||
const { formatUsd, getPrice } = require("../../shared/prices");
|
const { formatUsd, getPrice } = require("../../shared/prices");
|
||||||
const { getProvider } = require("../../shared/balances");
|
const { getProvider } = require("../../shared/balances");
|
||||||
const { isScamAddress } = require("../../shared/scamlist");
|
const { isScamAddress } = require("../../shared/scamlist");
|
||||||
const { hasTransactionHistory } = require("../../shared/transactions");
|
|
||||||
const { ERC20_ABI } = require("../../shared/constants");
|
const { ERC20_ABI } = require("../../shared/constants");
|
||||||
const { log } = require("../../shared/log");
|
const { log } = require("../../shared/log");
|
||||||
const makeBlockie = require("ethereum-blockies-base64");
|
const makeBlockie = require("ethereum-blockies-base64");
|
||||||
@@ -244,6 +243,11 @@ function show(txInfo) {
|
|||||||
state.viewData = { pendingTx: txInfo };
|
state.viewData = { pendingTx: txInfo };
|
||||||
showView("confirm-tx");
|
showView("confirm-tx");
|
||||||
|
|
||||||
|
// Reset recipient warning: reserve space (visibility:hidden) while
|
||||||
|
// the async check runs, preventing layout shift per README policy.
|
||||||
|
const recipientWarning = $("confirm-recipient-warning");
|
||||||
|
recipientWarning.style.visibility = "hidden";
|
||||||
|
|
||||||
estimateGas(txInfo);
|
estimateGas(txInfo);
|
||||||
checkRecipientHistory(txInfo);
|
checkRecipientHistory(txInfo);
|
||||||
}
|
}
|
||||||
@@ -289,27 +293,26 @@ async function estimateGas(txInfo) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function checkRecipientHistory(txInfo) {
|
async function checkRecipientHistory(txInfo) {
|
||||||
|
const el = $("confirm-recipient-warning");
|
||||||
try {
|
try {
|
||||||
const hasHistory = await hasTransactionHistory(
|
const provider = getProvider(state.rpcUrl);
|
||||||
txInfo.to,
|
// Skip warning for contract addresses — they may legitimately
|
||||||
state.blockscoutUrl,
|
// have zero outgoing transactions (getTransactionCount returns
|
||||||
);
|
// the nonce, i.e. sent-tx count only).
|
||||||
if (hasHistory === false) {
|
const code = await provider.getCode(txInfo.to);
|
||||||
const warningsEl = $("confirm-warnings");
|
if (code && code !== "0x") {
|
||||||
const warningDiv = document.createElement("div");
|
// Contract address — no warning needed, keep space reserved
|
||||||
warningDiv.className =
|
// but invisible to prevent layout shift
|
||||||
"border border-dashed p-2 mb-1 text-xs font-bold";
|
return;
|
||||||
warningDiv.style.color = "#dc2626";
|
|
||||||
warningDiv.style.borderColor = "#dc2626";
|
|
||||||
warningDiv.textContent =
|
|
||||||
"WARNING: This address has ZERO transaction history on-chain. " +
|
|
||||||
"It has never sent or received any transactions. " +
|
|
||||||
"Double-check the address before sending.";
|
|
||||||
warningsEl.appendChild(warningDiv);
|
|
||||||
warningsEl.classList.remove("hidden");
|
|
||||||
}
|
}
|
||||||
|
const txCount = await provider.getTransactionCount(txInfo.to);
|
||||||
|
if (txCount === 0) {
|
||||||
|
el.style.visibility = "visible";
|
||||||
|
}
|
||||||
|
// If txCount > 0, leave visibility:hidden — space stays reserved
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
log.errorf("recipient history check failed:", e.message);
|
log.errorf("recipient history check failed:", e.message);
|
||||||
|
// On error, leave visibility:hidden — no layout shift, no false warning
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -158,8 +158,9 @@ function render() {
|
|||||||
loadCalldata(tx.hash, tx.to);
|
loadCalldata(tx.hash, tx.to);
|
||||||
}
|
}
|
||||||
|
|
||||||
$("tx-detail-time").textContent =
|
const isoStr = isoDate(tx.timestamp);
|
||||||
isoDate(tx.timestamp) + " (" + timeAgo(tx.timestamp) + ")";
|
$("tx-detail-time").innerHTML =
|
||||||
|
copyableHtml(isoStr) + " (" + escapeHtml(timeAgo(tx.timestamp)) + ")";
|
||||||
$("tx-detail-status").textContent = tx.isError ? "Failed" : "Success";
|
$("tx-detail-status").textContent = tx.isError ? "Failed" : "Success";
|
||||||
showView("transaction");
|
showView("transaction");
|
||||||
|
|
||||||
|
|||||||
@@ -59,6 +59,16 @@ function txHashHtml(hash) {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function blockNumberHtml(blockNumber) {
|
||||||
|
const num = String(blockNumber);
|
||||||
|
const link = `https://etherscan.io/block/${num}`;
|
||||||
|
const extLink = `<a href="${link}" target="_blank" rel="noopener" class="inline-flex items-center">${EXT_ICON}</a>`;
|
||||||
|
return (
|
||||||
|
`<span class="underline decoration-dashed cursor-pointer" data-copy="${escapeHtml(num)}">${escapeHtml(num)}</span>` +
|
||||||
|
extLink
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
function attachCopyHandlers(viewId) {
|
function attachCopyHandlers(viewId) {
|
||||||
document
|
document
|
||||||
.getElementById(viewId)
|
.getElementById(viewId)
|
||||||
@@ -189,7 +199,7 @@ function renderSuccess() {
|
|||||||
$("success-tx-to").innerHTML = toAddressHtml(d.to);
|
$("success-tx-to").innerHTML = toAddressHtml(d.to);
|
||||||
}
|
}
|
||||||
|
|
||||||
$("success-tx-block").textContent = String(d.blockNumber);
|
$("success-tx-block").innerHTML = blockNumberHtml(d.blockNumber);
|
||||||
$("success-tx-hash").innerHTML = txHashHtml(d.hash);
|
$("success-tx-hash").innerHTML = txHashHtml(d.hash);
|
||||||
|
|
||||||
// Show decoded calldata details if present
|
// Show decoded calldata details if present
|
||||||
|
|||||||
@@ -251,36 +251,4 @@ function filterTransactions(txs, filters = {}) {
|
|||||||
return { transactions: filtered, newFraudContracts: newFraud };
|
return { transactions: filtered, newFraudContracts: newFraud };
|
||||||
}
|
}
|
||||||
|
|
||||||
async function hasTransactionHistory(address, blockscoutUrl) {
|
module.exports = { fetchRecentTransactions, filterTransactions };
|
||||||
try {
|
|
||||||
const resp = await debugFetch(blockscoutUrl + "/addresses/" + address);
|
|
||||||
if (!resp.ok) {
|
|
||||||
// If Blockscout returns 404, the address has never been seen on-chain.
|
|
||||||
if (resp.status === 404) return false;
|
|
||||||
log.errorf(
|
|
||||||
"blockscout address check:",
|
|
||||||
resp.status,
|
|
||||||
resp.statusText,
|
|
||||||
);
|
|
||||||
return null; // unknown
|
|
||||||
}
|
|
||||||
const data = await resp.json();
|
|
||||||
// Blockscout v2 address endpoint returns tx counts.
|
|
||||||
// An address with no history may still exist (e.g. received ETH once
|
|
||||||
// but shows 0 outgoing). We check both transactions_count and
|
|
||||||
// token_transfers_count to be thorough.
|
|
||||||
const txCount =
|
|
||||||
(parseInt(data.transactions_count, 10) || 0) +
|
|
||||||
(parseInt(data.token_transfers_count, 10) || 0);
|
|
||||||
return txCount > 0;
|
|
||||||
} catch (e) {
|
|
||||||
log.errorf("hasTransactionHistory error:", e.message);
|
|
||||||
return null; // unknown, don't block the user
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = {
|
|
||||||
fetchRecentTransactions,
|
|
||||||
filterTransactions,
|
|
||||||
hasTransactionHistory,
|
|
||||||
};
|
|
||||||
|
|||||||
Reference in New Issue
Block a user