Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions frontend/src/components/WalletInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,14 +126,6 @@ export function WalletInfo() {
<div className="wallet-actions">
<button
className="btn-secondary"
onClick={() => {
const explorerUrl = chain?.id ? NETWORK_EXPLORERS[chain.id as keyof typeof NETWORK_EXPLORERS] : null
if (explorerUrl) {
window.open(`${explorerUrl}/address/${address}`, '_blank')
} else {
alert('Explorer not available for this network')
}
}}
onClick={handleViewOnExplorer}
>
View on Explorer
Expand Down
Loading