Skip to content

[Bug]: View on block explorer does not redirect users to browser #26628

@GeorgeGkas

Description

@GeorgeGkas

Describe the bug

It was discovered that when users execute a swap (lets say ETH.ETH <> ETH.MUSD) and go to Transaction Details screen after swap is confirmed, upon clicking "View on block explorer" nothing happens.

Expected behavior

Clicking "View on block explorer" button on a confirmed swap or bridge transaction in Transactions details screen, should open the browser and navigate user to the blockchain explorer.

Screenshots/Recordings

Screen.Recording.2026-02-26.at.3.02.33.PM.mov

Steps to reproduce

  1. Go to Swaps
  2. Execute a swap or bridge (eg on Ethereum)
  3. Go to Activity tab and wait for the tx to be confirmed.
  4. Enter the transactions details of the confirmed swap/bridge.
  5. Click "View on block explorer" button
  6. Observe that nothing happens

Error messages or log output

N/A

Where was this bug found?

Internal release testing

Version

7.67.0

Build number

3807

Build type

Beta

Device

iOS

Operating system

Other (please elaborate in the "Additional Context" section)

Additional context

Discovered on iOS but is reproducible on Android as well

Severity

This is a regression introduced by #25879

The solution is to update the navigate call from

navigation.navigate(Routes.BROWSER.VIEW, {
   newTabUrl: swapSrcExplorerData.explorerTxUrl,
   timestamp: Date.now(),
   });

to

navigation.navigate(Routes.BROWSER.HOME, {
  screen: Routes.BROWSER.VIEW,
  params: {
    newTabUrl: swapSrcExplorerData.explorerTxUrl,
    timestamp: Date.now(),
  },
 });

This update should happen both to TransactionDetails and BlockchainModal but might be needed elsewhere as well.

Metadata

Metadata

Assignees

Labels

RCA-neededIssue root cause analysis neededSev1-highAn issue that may have caused fund loss or access to wallet in the past & may still be ongoingregression-RC-7.67.0Regression bug that was found in release candidate (RC) for release 7.67.0release-7.69.0Issue or pull request that will be included in release 7.69.0release-blockerThis bug is blocking the next releaseteam-mobile-uxMobile UX teamtype-bugSomething isn't working

Type

No fields configured for Bug.

Projects

Status
To be triaged

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions