fix: resolve token symbols from multiple sources (closes #51) #52

Merged
sneak merged 2 commits from fix/usdc-symbol-display into main 2026-02-28 20:40:43 +01:00
Showing only changes of commit 34c66d19c4 - Show all commits

View File

@@ -143,11 +143,10 @@ function render() {
typeEl.textContent = tx.directionLabel;
typeSection.classList.remove("hidden");
}
if (headingEl) headingEl.textContent = tx.directionLabel;
} else {
if (typeSection) typeSection.classList.add("hidden");
if (headingEl) headingEl.textContent = "Transaction";
}
if (headingEl) headingEl.textContent = "Transaction";
// Hide calldata and raw data sections; re-fetch if this is a contract call
const calldataSection = $("tx-detail-calldata-section");