Skip to content

[DO NOT MERGE] probe: 42867 e2e with Sentry runtime disabled - #44581

Closed
MajorLift wants to merge 69 commits into
mainfrom
jongsun/probe/42867-sentry-disabled-e2e
Closed

[DO NOT MERGE] probe: 42867 e2e with Sentry runtime disabled#44581
MajorLift wants to merge 69 commits into
mainfrom
jongsun/probe/42867-sentry-disabled-e2e

Conversation

@MajorLift

Copy link
Copy Markdown
Contributor

Diagnostic probe for the deterministic import-custom-token-with-custom-network stall on #42867 (shard 18, 6+ consecutive failures; background addNetwork never completes; spec passes on main).

Same head commit as #42867 (4a5115a06fb); the only difference is the manifest-flag line below, which disables Sentry at e2e runtime. Shard 18 green here → the stall is caused by v10 Sentry runtime behavior in test builds; still red → the cause is elsewhere in the branch.

flags = {"sentry": {"forceEnable": false}}

Will be closed after one CI cycle; results recorded on #42867.

Copilot AI and others added 30 commits May 21, 2026 16:21
Agent-Logs-Url: https://github.com/MetaMask/metamask-extension/sessions/66deb05c-d6c0-4fae-953c-8842d8e47c25

Co-authored-by: MajorLift <34228073+MajorLift@users.noreply.github.com>
Agent-Logs-Url: https://github.com/MetaMask/metamask-extension/sessions/66deb05c-d6c0-4fae-953c-8842d8e47c25

Co-authored-by: MajorLift <34228073+MajorLift@users.noreply.github.com>
Agent-Logs-Url: https://github.com/MetaMask/metamask-extension/sessions/66deb05c-d6c0-4fae-953c-8842d8e47c25

Co-authored-by: MajorLift <34228073+MajorLift@users.noreply.github.com>
The `@sentry/browser` v8→v10 upgrade crashed the extension on boot under LavaMoat
scuttling, failing every e2e job at `.controller-loaded`.

v10's `browserTracingIntegration` registers an INP listener via
`globalThis.addEventListener` synchronously inside `Sentry.init`, v10 web-vitals
(`whenIdleOrHidden`) feature-detects `requestIdleCallback`, and v10 also reads
`Request`/`WebAssembly`. Scuttling hid or threw on these.

Webpack scuttles the shared realm with throwing getters, so add `WebAssembly`,
`Request`, and `requestIdleCallback` to the `scuttleGlobalThis` exceptions in
`LavamoatPlugin`. The browserify `sentry-install` bundle reaches Sentry through a
proxy whose allowlist (`scuttlingConfigBase`) omitted `addEventListener`; add it
and `removeEventListener`, bound to `window` like `setTimeout`.
The hook spread the raw Sentry `Span`; `@sentry/core` v10 exposes `undefined`
internal fields (e.g. `_endTime`) that fail the `snap_startTrace` response's
`Json` validation and reject the RPC — surfacing as an `UnexpectedAlertOpenError`
in the preinstalled-example snap e2e test. Return `{ traceId, spanId }` from
`spanContext()` instead.
Under the v10 SDK's startup timing the Home page mount reliably sets
`pendingShieldCohort` before the test error is captured, so the masked
Sentry UI-state snapshot is `string` rather than `null`.
…hrough

v10 tracing emits hundreds of performance envelopes per test (~800 in a
failing multichain run). Passing them through to real sentry.io starved
e2e startup and flaked the non-EVM account render, and consumed the
metamask-performance quota from CI. Return a canned 200 locally instead.
…pshots

The field is populated by the Home page mount, so it is captured as `null`
or a string depending on timing; under v10's startup it flips and breaks the
state snapshot. Drop it from the comparison like other timing-dependent
fields rather than pinning a racy value.
Bisection for the v10 non-EVM (Solana) account-render timeout: v8 renders
the account ~instantly, v10 not within 10s, with identical envelope volume
(~570) — so it is v10's heavier per-operation browser-tracing instrumentation
(long-animation-frame / INP / fetch observers) at e2e's 100% sample rate,
not the telemetry traffic. e2e does not consume these traces; skipping the
integration there removes the overhead (and the CI quota draw).
The bisection it tested is refuted: skipping browserTracingIntegration in
e2e did not fix the non-EVM account-render timeout, and it broke
metrics/traces (no traces) and regressed metrics/errors. Restore the
de-flaked state.
Second timing-dependent field in the same snapshot: the profile-sync SRP
session is only present once account-sync establishes it, so its capture
varies across runs. Drop it from the comparison like `pendingShieldCohort`.
The refuted e2e browser-tracing gating slipped back in because the prior
revert moved the branch ref without updating the worktree. Restore
setupSentry.js to its un-gated state; keep the srpSessionData de-flake.
Root cause of the snap/multichain e2e failures: the shared
`waitForNonEvmAccountsLoaded` (hit by every login-based test) waits for the
Solana/Bitcoin snap account icons with the default 10s timeout. The icons
render in <1s locally, but on constrained 2-core CI runners the v10 Sentry
SDK's heavier startup pushes the render just past 10s — so it's a runner
timing margin, not a functional regression (the specs pass locally on v10).
Allow 30s for these snap-backed icons.
Reconcile `yarn.lock` against the merged `package.json`, keeping the v10
`@sentry/*` resolutions alongside main's dependency bumps.
After a wallet unlock the controllers re-initialize, and the v10 Sentry SDK's
heavier startup pushes `.controller-loaded` past the default 10s selenium wait
on 2-core CI runners (`multichain-accounts/add-account.spec.ts` "added account
should persist after wallet lock"). Bump the startup wait in `navigate` and
`waitForControllersLoaded` to 30s without inflating the global `this.timeout`.
Resolve `errors.spec.ts`: drop `MetaMetricsController.latestNonAnonymousEventTimestamp`
from `removedBackgroundFields` per main's #43556 (the field was removed from the
controller), keeping the timing-dependent `pendingShieldCohort` / `srpSessionData`
masks. Reconcile and dedupe `yarn.lock` against the merged `package.json`
(material-ui→mui migration, `transaction-controller` 67→68).
The `.controller-loaded` and snap-backed non-EVM icon waits are polled
ceilings, not fixed delays — they return as soon as their readiness signal
appears. The earlier hard-coded 30s only mattered on a genuine hang, but it
also slowed local failures from 10s to 30s for no benefit (local runners
aren't the 2-core CI constraint). Replace the four literals with a single
named `STARTUP_LOAD_TIMEOUT` (30s on CI, 10s locally): CI keeps the headroom
for the heavier Sentry v10 startup, local fails fast again.
@MajorLift MajorLift added no-changelog no-changelog Indicates no external facing user changes, therefore no changelog documentation needed team-extension-platform Extension Platform team labels Jul 16, 2026
@github-actions

Copy link
Copy Markdown
Contributor

CLA Signature Action: All authors have signed the CLA. You may need to manually re-run the blocking PR check if it doesn't pass in a few minutes.

@metamask-ci metamask-ci Bot added the INVALID-PR-TEMPLATE PR's body doesn't match template label Jul 16, 2026
@metamask-ci

metamask-ci Bot commented Jul 16, 2026

Copy link
Copy Markdown
Contributor

✨ Files requiring CODEOWNER review ✨

🫰 @MetaMask/core-platform (1 files, +9 -4)
  • 📁 app/
    • 📁 scripts/
      • 📄 metamask-controller.js +9 -4

👨‍🔧 @MetaMask/extension-platform (2 files, +14 -4)
  • 📁 app/
    • 📁 scripts/
      • 📄 metamask-controller.js +9 -4
  • 📁 development/
    • 📁 webpack/
      • 📁 utils/
        • 📁 plugins/
          • 📁 LavamoatPlugin/
            • 📄 index.ts +5 -0

📜 @MetaMask/policy-reviewers (8 files, +216 -296)
  • 📁 lavamoat/
    • 📁 webpack/
      • 📁 mv2/
        • 📁 beta/
          • 📄 policy.json +27 -37
        • 📁 experimental/
          • 📄 policy.json +27 -37
        • 📁 flask/
          • 📄 policy.json +27 -37
        • 📁 main/
          • 📄 policy.json +27 -37
      • 📁 mv3/
        • 📁 beta/
          • 📄 policy.json +27 -37
        • 📁 experimental/
          • 📄 policy.json +27 -37
        • 📁 flask/
          • 📄 policy.json +27 -37
        • 📁 main/
          • 📄 policy.json +27 -37

Tip

Follow the policy review process outlined in the LavaMoat Policy Review Process doc before expecting an approval from Policy Reviewers.


🧪 @MetaMask/qa (2 files, +57 -12)
  • 📁 test/
    • 📁 e2e/
      • 📁 page-objects/
        • 📁 pages/
          • 📁 home/
            • 📄 homepage.ts +13 -2
        • 📄 mock-e2e.js +44 -10

👨‍🔧 @itsyoboieltr (1 files, +5 -0)
  • 📁 development/
    • 📁 webpack/
      • 📁 utils/
        • 📁 plugins/
          • 📁 LavamoatPlugin/
            • 📄 index.ts +5 -0

@socket-security

socket-security Bot commented Jul 16, 2026

Copy link
Copy Markdown

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Updated@​sentry/​types@​8.33.1 ⏵ 10.38.010010077 -296100
Updated@​sentry/​browser@​8.33.1 ⏵ 10.38.079 +210091 +196100
Updated@​sentry/​core@​8.33.1 ⏵ 10.38.084 -1610083 +196100
Updated@​sentry/​node@​10.30.0 ⏵ 10.38.097 +110095 +196100

View full report

@socket-security

socket-security Bot commented Jul 16, 2026

Copy link
Copy Markdown

Caution

MetaMask internal reviewing guidelines:

  • Do not ignore-all
  • Each alert has instructions on how to review if you don't know what it means. If lost, ask your Security Liaison or the supply-chain group
  • Copy-paste ignore lines for specific packages or a group of one kind with a note on what research you did to deem it safe.
    @SocketSecurity ignore npm/PACKAGE@VERSION
Action Severity Alert  (click "▶" to expand/collapse)
Block High
Obfuscated code: npm @sentry-internal/feedback is 90.0% likely obfuscated

Confidence: 0.90

Location: Package overview

From: ?npm/@sentry/browser@10.38.0npm/@sentry-internal/feedback@10.38.0

ℹ Read more on: This package | This alert | What is obfuscated code?

Next steps: Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support@socket.dev.

Suggestion: Packages should not obfuscate their code. Consider not using packages with obfuscated code.

Mark the package as acceptable risk. To ignore this alert only in this pull request, reply with the comment @SocketSecurity ignore npm/@sentry-internal/feedback@10.38.0. You can also ignore all packages with @SocketSecurity ignore-all. To ignore an alert for all future pull requests, use Socket's Dashboard to change the triage state of this alert.

Block High
Obfuscated code: npm @sentry/browser is 90.0% likely obfuscated

Confidence: 0.90

Location: Package overview

From: package.jsonnpm/@sentry/browser@10.38.0

ℹ Read more on: This package | This alert | What is obfuscated code?

Next steps: Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support@socket.dev.

Suggestion: Packages should not obfuscate their code. Consider not using packages with obfuscated code.

Mark the package as acceptable risk. To ignore this alert only in this pull request, reply with the comment @SocketSecurity ignore npm/@sentry/browser@10.38.0. You can also ignore all packages with @SocketSecurity ignore-all. To ignore an alert for all future pull requests, use Socket's Dashboard to change the triage state of this alert.

Block High
Obfuscated code: npm @sentry/core is 90.0% likely obfuscated

Confidence: 0.90

Location: Package overview

From: package.jsonnpm/@sentry/core@10.38.0

ℹ Read more on: This package | This alert | What is obfuscated code?

Next steps: Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support@socket.dev.

Suggestion: Packages should not obfuscate their code. Consider not using packages with obfuscated code.

Mark the package as acceptable risk. To ignore this alert only in this pull request, reply with the comment @SocketSecurity ignore npm/@sentry/core@10.38.0. You can also ignore all packages with @SocketSecurity ignore-all. To ignore an alert for all future pull requests, use Socket's Dashboard to change the triage state of this alert.

Block High
Obfuscated code: npm @sentry/node-core is 90.0% likely obfuscated

Confidence: 0.90

Location: Package overview

From: ?npm/@sentry/node@10.38.0npm/@sentry/node-core@10.38.0

ℹ Read more on: This package | This alert | What is obfuscated code?

Next steps: Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support@socket.dev.

Suggestion: Packages should not obfuscate their code. Consider not using packages with obfuscated code.

Mark the package as acceptable risk. To ignore this alert only in this pull request, reply with the comment @SocketSecurity ignore npm/@sentry/node-core@10.38.0. You can also ignore all packages with @SocketSecurity ignore-all. To ignore an alert for all future pull requests, use Socket's Dashboard to change the triage state of this alert.

Warn Medium
Medium CVE: OpenTelemetry Core: Unbounded memory allocation in W3C Baggage propagation in npm @opentelemetry/core

CVE: GHSA-8988-4f7v-96qf OpenTelemetry Core: Unbounded memory allocation in W3C Baggage propagation (MODERATE)

Affected versions: < 2.8.0

Patched version: 2.8.0

From: ?npm/@opentelemetry/core@2.5.0

ℹ Read more on: This package | This alert | What is a medium CVE?

Next steps: Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support@socket.dev.

Suggestion: Remove or replace dependencies that include known medium severity CVEs. Consumers can use dependency overrides or npm audit fix --force to remove vulnerable dependencies.

Mark the package as acceptable risk. To ignore this alert only in this pull request, reply with the comment @SocketSecurity ignore npm/@opentelemetry/core@2.5.0. You can also ignore all packages with @SocketSecurity ignore-all. To ignore an alert for all future pull requests, use Socket's Dashboard to change the triage state of this alert.

Warn Low
Potential code anomaly (AI signal): npm @sentry-internal/replay-canvas is 61.0% likely to have a medium risk anomaly

Notes: The fragment appears to be an instrumentation/telemetry component (likely part of a canvas/WebGL replay library) designed to intercept rendering calls, serialize complex graphics data, and forward mutations to a worker or callback for replay. While the data collection capabilities are extensive and involve potentially sensitive canvas/WebGL state, there is no clear evidence of active data exfiltration, backdoors, or credential theft within this module alone. The primary risk stems from data handling and transmission paths (mutationCb/worker), as well as aggressive runtime patching that could mask failures. Recommend strict data minimization, clear privacy policy, and secure, authenticated sinks for any mutation data in downstream paths.

Confidence: 0.61

Severity: 0.55

From: ?npm/@sentry/browser@10.38.0npm/@sentry-internal/replay-canvas@10.38.0

ℹ Read more on: This package | This alert | What is an AI-detected potential code anomaly?

Next steps: Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support@socket.dev.

Suggestion: An AI system found a low-risk anomaly in this package. It may still be fine to use, but you should check that it is safe before proceeding.

Mark the package as acceptable risk. To ignore this alert only in this pull request, reply with the comment @SocketSecurity ignore npm/@sentry-internal/replay-canvas@10.38.0. You can also ignore all packages with @SocketSecurity ignore-all. To ignore an alert for all future pull requests, use Socket's Dashboard to change the triage state of this alert.

Warn Low
Potential code anomaly (AI signal): npm import-in-the-middle is 62.0% likely to have a medium risk anomaly

Notes: This code is an import-hook framework: it registers a global hook into Node’s/module loader pipeline, executes a caller-provided hookFn with module resolution context, and can overwrite namespace.default based on hookFn’s return value. While there is no direct evidence of data exfiltration or system compromise in the shown fragment, the capability to tamper with module exports during import is high-impact and could be abused for supply-chain sabotage. Additional risk signals include a broad builtin-detection override and weak MessageChannel acknowledgement handling (no message validation).

Confidence: 0.62

Severity: 0.56

From: ?npm/@sentry/node@10.38.0npm/import-in-the-middle@2.0.6

ℹ Read more on: This package | This alert | What is an AI-detected potential code anomaly?

Next steps: Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support@socket.dev.

Suggestion: An AI system found a low-risk anomaly in this package. It may still be fine to use, but you should check that it is safe before proceeding.

Mark the package as acceptable risk. To ignore this alert only in this pull request, reply with the comment @SocketSecurity ignore npm/import-in-the-middle@2.0.6. You can also ignore all packages with @SocketSecurity ignore-all. To ignore an alert for all future pull requests, use Socket's Dashboard to change the triage state of this alert.

View full report

@metamask-ci

metamask-ci Bot commented Jul 16, 2026

Copy link
Copy Markdown
Contributor
Builds ready [4a5115a]
Deprecated Browserify fallback builds
⚡ Performance Benchmarks (Total: 🟢 17 pass · 🟡 7 warn · 🔴 0 fail)

Baseline (latest main): 4c7819a | Date: 7/16/2026 | Pipeline: 29525105497 | Baseline logs

Interaction Benchmarks · Samples: 5
Benchmarkchrome-webpackfirefox-webpack
loadNewAccount
[Sentry log · main/release]
🟢 [CI log]🟡 [CI log]
confirmTx
[Sentry log · main/release]
🟢 [CI log]🟢 [CI log]
bridgeUserActions
[Sentry log · main/release]
🟢 [CI log]🟢 [CI log]

📈 Results compared to the previous 5 runs on main

  • loadNewAccount/load_new_account: +171%
  • loadNewAccount/total: +171%
  • confirmTx/inp: +35%
  • bridgeUserActions/bridge_load_asset_picker: +15%
  • bridgeUserActions/longTaskCount: +67%
  • bridgeUserActions/longTaskTotalDuration: +46%
  • bridgeUserActions/inp: +13%
  • loadNewAccount/load_new_account: +141%
  • loadNewAccount/total: +141%
  • loadNewAccount/inp: -23%
  • loadNewAccount/lcp: +1381%
  • confirmTx/confirm_tx: +12%
  • confirmTx/longTaskCount: -100%
  • confirmTx/longTaskTotalDuration: -100%
  • confirmTx/longTaskMaxDuration: -100%
  • confirmTx/tbt: -100%
  • confirmTx/total: +12%
  • confirmTx/inp: +54%
  • confirmTx/fcp: -46%
  • confirmTx/lcp: +1252%
  • bridgeUserActions/bridge_load_page: +201%
  • bridgeUserActions/bridge_load_asset_picker: +86%
  • bridgeUserActions/longTaskCount: -100%
  • bridgeUserActions/longTaskTotalDuration: -100%
  • bridgeUserActions/longTaskMaxDuration: -100%
  • bridgeUserActions/tbt: -100%
  • bridgeUserActions/total: +188%
  • bridgeUserActions/fcp: -40%
  • bridgeUserActions/lcp: +1221%

🌐 Core Web Vitals — 🟢 good · 🟡 needs improvement · 🔴 poor (web.dev thresholds)

  • 🟡 loadNewAccount/FCP: p75 1.8s
  • 🟡 loadNewAccount/LCP: p75 2.7s
Startup Benchmarks · Samples: 100
Benchmarkchrome-webpackfirefox-webpack
startupStandardHome
[Sentry log · main/release]
🟢 [CI log]🟢 [CI log]
startupPowerUserHome
[Sentry log · main/release]
🟡 [CI log]

📈 Results compared to the previous 5 runs on main

  • startupStandardHome/backgroundConnect: +13%
  • startupStandardHome/initialActions: +15%
  • startupStandardHome/setupStore: -18%
  • startupStandardHome/longTaskCount: +15%
  • startupStandardHome/inp: +10%
  • startupStandardHome/lcp: -52%
  • startupStandardHome/domInteractive: -16%
  • startupStandardHome/firstReactRender: -15%
  • startupStandardHome/initialActions: -44%
  • startupStandardHome/setupStore: -23%
  • startupStandardHome/fcp: -15%
  • startupPowerUserHome/backgroundConnect: -14%
  • startupPowerUserHome/setupStore: +12%
  • startupPowerUserHome/inp: +36%

🌐 Core Web Vitals — 🟢 good · 🟡 needs improvement · 🔴 poor (web.dev thresholds)

  • 🟡 startupPowerUserHome/INP: p75 264ms
  • 🟡 startupPowerUserHome/LCP: p75 3.4s
User Journey Benchmarks · Samples: 5 · mock API
Benchmarkchrome-webpackfirefox-webpack
onboardingImportWallet
[Sentry log · main/release]
🟢 [CI log]🟢 [CI log]
onboardingNewWallet
[Sentry log · main/release]
🟢 [CI log]
🔴 total
🟢 [CI log]
assetDetails
[Sentry log · main/release]
🟢 [CI log]🟡 [CI log]
solanaAssetDetails
[Sentry log · main/release]
🟢 [CI log]🟡 [CI log]
importSrpHome
[Sentry log · main/release]
🟢 [CI log]🟡 [CI log]
sendTransactions
[Sentry log · main/release]
🟢 [CI log]🟡 [CI log]
swap
[Sentry log · main/release]
🟢 [CI log]🟡 [CI log]

📈 Results compared to the previous 5 runs on main

  • onboardingImportWallet/srpButtonToSrpForm: -13%
  • onboardingImportWallet/confirmSrpToPwForm: -13%
  • onboardingImportWallet/pwFormToMetricsScreen: -14%
  • onboardingImportWallet/metricsToWalletReadyScreen: -10%
  • onboardingImportWallet/doneButtonToHomeScreen: -76%
  • onboardingImportWallet/openAccountMenuToAccountListLoaded: +10%
  • onboardingImportWallet/longTaskCount: -100%
  • onboardingImportWallet/longTaskTotalDuration: -100%
  • onboardingImportWallet/longTaskMaxDuration: -100%
  • onboardingImportWallet/tbt: -100%
  • onboardingImportWallet/total: -74%
  • onboardingNewWallet/agreeButtonToOnboardingSuccess: +16%
  • onboardingNewWallet/doneButtonToAssetList: +128%
  • onboardingNewWallet/longTaskCount: -75%
  • onboardingNewWallet/longTaskTotalDuration: -86%
  • onboardingNewWallet/longTaskMaxDuration: -65%
  • onboardingNewWallet/tbt: -95%
  • onboardingNewWallet/total: +115%
  • solanaAssetDetails/assetClickToPriceChart: -63%
  • solanaAssetDetails/total: -63%
  • solanaAssetDetails/inp: +23%
  • solanaAssetDetails/cls: -86%
  • importSrpHome/loginToHomeScreen: -48%
  • importSrpHome/openAccountMenuAfterLogin: +40%
  • importSrpHome/homeAfterImportWithNewWallet: -27%
  • importSrpHome/longTaskCount: -74%
  • importSrpHome/longTaskTotalDuration: -76%
  • importSrpHome/longTaskMaxDuration: -33%
  • importSrpHome/tbt: -76%
  • importSrpHome/total: -29%
  • importSrpHome/inp: -53%
  • importSrpHome/fcp: -25%
  • importSrpHome/lcp: -26%
  • importSrpHome/cls: -55%
  • sendTransactions/openSendPageFromHome: -24%
  • sendTransactions/selectTokenToSendFormLoaded: -21%
  • sendTransactions/reviewTransactionToConfirmationPage: -98%
  • sendTransactions/longTaskCount: -100%
  • sendTransactions/longTaskTotalDuration: -100%
  • sendTransactions/longTaskMaxDuration: -100%
  • sendTransactions/tbt: -100%
  • sendTransactions/total: -97%
  • sendTransactions/inp: -28%
  • sendTransactions/lcp: -67%
  • sendTransactions/cls: -53%
  • swap/fetchAndDisplaySwapQuotes: +66%
  • swap/longTaskTotalDuration: -24%
  • swap/longTaskMaxDuration: -32%
  • swap/tbt: -100%
  • swap/total: +65%
  • swap/inp: +66%
  • swap/lcp: -66%
  • swap/cls: -86%

🌐 Core Web Vitals — 🟢 good · 🟡 needs improvement · 🔴 poor (web.dev thresholds)

  • 🟡 assetDetails/FCP: p75 1.9s
  • 🟡 solanaAssetDetails/FCP: p75 1.9s
  • 🟡 importSrpHome/FCP: p75 1.9s
  • 🟡 sendTransactions/FCP: p75 2.0s
  • 🟡 swap/FCP: p75 2.0s
Dapp Page Load Benchmarks · Samples: 100
Benchmarkchrome-webpack
dappPageLoad
[Sentry log · main/release]
🟢 [CI log]
Bundle size diffs [🚨 Warning! Bundle size has increased!]
  • background: 79.22 KiB (0.54%)
  • ui: 125.21 KiB (0.71%)
  • common: 0 Bytes (0%)
  • other: 0 Bytes (0%)
  • contentScripts: 1.35 KiB (0.07%)
  • zip: 98.59 KiB (0.36%)

@metamask-ci

metamask-ci Bot commented Jul 16, 2026

Copy link
Copy Markdown
Contributor
Builds ready [09ab477]
Deprecated Browserify fallback builds
⚡ Performance Benchmarks (Total: 🟢 13 pass · 🟡 10 warn · 🔴 1 fail)

Baseline (latest main): aa09362 | Date: 7/16/2026 | Pipeline: 29529176560 | Baseline logs

Metricschrome-webpackfirefox-webpack
onboardingNewWallet
[Sentry log · main/release]
🟢 [CI log]🔴 [CI log]

Regressions (🔴 1 failure)

Interaction Benchmarks · Samples: 5
Benchmarkchrome-webpackfirefox-webpack
loadNewAccount
[Sentry log · main/release]
🟡 [CI log]🟡 [CI log]
confirmTx
[Sentry log · main/release]
🟢 [CI log]🟡 [CI log]
bridgeUserActions
[Sentry log · main/release]
🟢 [CI log]🟡 [CI log]

📈 Results compared to the previous 5 runs on main

  • loadNewAccount/load_new_account: +75%
  • loadNewAccount/total: +75%
  • loadNewAccount/inp: +29%
  • loadNewAccount/fcp: +22%
  • confirmTx/inp: +60%
  • bridgeUserActions/longTaskCount: +43%
  • bridgeUserActions/longTaskTotalDuration: +39%
  • bridgeUserActions/tbt: +28%
  • bridgeUserActions/inp: +30%
  • loadNewAccount/load_new_account: +87%
  • loadNewAccount/total: +87%
  • loadNewAccount/fcp: +12%
  • loadNewAccount/lcp: +1216%
  • confirmTx/confirm_tx: +11%
  • confirmTx/longTaskCount: -100%
  • confirmTx/longTaskTotalDuration: -100%
  • confirmTx/longTaskMaxDuration: -100%
  • confirmTx/tbt: -100%
  • confirmTx/total: +11%
  • confirmTx/fcp: -40%
  • confirmTx/lcp: +1547%
  • bridgeUserActions/bridge_load_page: +318%
  • bridgeUserActions/bridge_load_asset_picker: +87%
  • bridgeUserActions/longTaskCount: -100%
  • bridgeUserActions/longTaskTotalDuration: -100%
  • bridgeUserActions/longTaskMaxDuration: -100%
  • bridgeUserActions/tbt: -100%
  • bridgeUserActions/total: +40%
  • bridgeUserActions/inp: +10%
  • bridgeUserActions/fcp: +14%
  • bridgeUserActions/lcp: +1028%

🌐 Core Web Vitals — 🟢 good · 🟡 needs improvement · 🔴 poor (web.dev thresholds)

  • 🟡 loadNewAccount/FCP: p75 2.1s
  • 🟡 loadNewAccount/FCP: p75 1.9s
  • 🟡 confirmTx/LCP: p75 2.8s
  • 🟡 bridgeUserActions/FCP: p75 1.9s
Startup Benchmarks · Samples: 100
Benchmarkchrome-webpackfirefox-webpack
startupStandardHome
[Sentry log · main/release]
🟢 [CI log]🟡 [CI log]
🟡 loadScripts
startupPowerUserHome
[Sentry log · main/release]
🟡 [CI log]

📈 Results compared to the previous 5 runs on main

  • startupStandardHome/uiStartup: +10%
  • startupStandardHome/load: +11%
  • startupStandardHome/domContentLoaded: +11%
  • startupStandardHome/backgroundConnect: +14%
  • startupStandardHome/firstReactRender: +12%
  • startupStandardHome/initialActions: +15%
  • startupStandardHome/loadScripts: +11%
  • startupStandardHome/longTaskCount: +15%
  • startupStandardHome/longTaskTotalDuration: +14%
  • startupStandardHome/longTaskMaxDuration: +13%
  • startupStandardHome/tbt: +14%
  • startupStandardHome/fcp: +10%
  • startupStandardHome/lcp: -50%
  • startupStandardHome/domInteractive: -20%
  • startupStandardHome/fcp: -18%
  • startupPowerUserHome/uiStartup: -14%
  • startupPowerUserHome/domInteractive: -23%
  • startupPowerUserHome/backgroundConnect: -20%
  • startupPowerUserHome/fcp: -17%
  • startupPowerUserHome/lcp: -12%

🌐 Core Web Vitals — 🟢 good · 🟡 needs improvement · 🔴 poor (web.dev thresholds)

  • 🟡 startupPowerUserHome/LCP: p75 3.1s
User Journey Benchmarks · Samples: 5 · mock API 🔴 1
Benchmarkchrome-webpackfirefox-webpack
onboardingImportWallet
[Sentry log · main/release]
🟡 [CI log]
🟡 total
🟢 [CI log]
onboardingNewWallet
[Sentry log · main/release]
🟢 [CI log]🔴 [CI log]
🔴 total
assetDetails
[Sentry log · main/release]
🟢 [CI log]🟢 [CI log]
solanaAssetDetails
[Sentry log · main/release]
🟢 [CI log]🟢 [CI log]
importSrpHome
[Sentry log · main/release]
🟡 [CI log]🟢 [CI log]
sendTransactions
[Sentry log · main/release]
🟢 [CI log]🟡 [CI log]
swap
[Sentry log · main/release]
🟢 [CI log]🟡 [CI log]

📈 Results compared to the previous 5 runs on main

  • onboardingImportWallet/doneButtonToHomeScreen: -76%
  • onboardingImportWallet/openAccountMenuToAccountListLoaded: +256%
  • onboardingImportWallet/longTaskCount: -88%
  • onboardingImportWallet/longTaskTotalDuration: -96%
  • onboardingImportWallet/longTaskMaxDuration: -93%
  • onboardingImportWallet/tbt: -100%
  • onboardingImportWallet/total: -73%
  • onboardingNewWallet/srpButtonToPwForm: -10%
  • onboardingNewWallet/doneButtonToAssetList: -40%
  • onboardingNewWallet/longTaskCount: -100%
  • onboardingNewWallet/longTaskTotalDuration: -100%
  • onboardingNewWallet/longTaskMaxDuration: -100%
  • onboardingNewWallet/tbt: -100%
  • onboardingNewWallet/total: -36%
  • solanaAssetDetails/assetClickToPriceChart: -74%
  • solanaAssetDetails/longTaskCount: -100%
  • solanaAssetDetails/longTaskTotalDuration: -100%
  • solanaAssetDetails/longTaskMaxDuration: -100%
  • solanaAssetDetails/tbt: -100%
  • solanaAssetDetails/total: -74%
  • solanaAssetDetails/inp: +38%
  • solanaAssetDetails/cls: -86%
  • importSrpHome/loginToHomeScreen: -24%
  • importSrpHome/openAccountMenuAfterLogin: +15%
  • importSrpHome/homeAfterImportWithNewWallet: -33%
  • importSrpHome/longTaskCount: -41%
  • importSrpHome/longTaskTotalDuration: -41%
  • importSrpHome/tbt: -44%
  • importSrpHome/total: -33%
  • importSrpHome/inp: +13%
  • importSrpHome/cls: -33%
  • sendTransactions/openSendPageFromHome: -17%
  • sendTransactions/selectTokenToSendFormLoaded: -35%
  • sendTransactions/reviewTransactionToConfirmationPage: -99%
  • sendTransactions/longTaskCount: -100%
  • sendTransactions/longTaskTotalDuration: -100%
  • sendTransactions/longTaskMaxDuration: -100%
  • sendTransactions/tbt: -100%
  • sendTransactions/total: -98%
  • sendTransactions/inp: -30%
  • sendTransactions/lcp: -17%
  • sendTransactions/cls: -53%
  • swap/openSwapPageFromHome: -21%
  • swap/fetchAndDisplaySwapQuotes: +93%
  • swap/longTaskCount: -100%
  • swap/longTaskTotalDuration: -100%
  • swap/longTaskMaxDuration: -100%
  • swap/tbt: -100%
  • swap/total: +91%
  • swap/inp: +43%
  • swap/lcp: -14%
  • swap/cls: -86%

🌐 Core Web Vitals — 🟢 good · 🟡 needs improvement · 🔴 poor (web.dev thresholds)

  • 🟡 importSrpHome/INP: p75 336ms
  • 🟡 importSrpHome/FCP: p75 1.8s
  • 🟡 sendTransactions/FCP: p75 2.0s
  • 🟡 swap/FCP: p75 2.0s
Dapp Page Load Benchmarks · Samples: 100
Benchmarkchrome-webpack
dappPageLoad
[Sentry log · main/release]
🟢 [CI log]
Bundle size diffs [🚨 Warning! Bundle size has increased!]
  • background: 80.63 KiB (0.55%)
  • ui: 127.64 KiB (0.73%)
  • common: 0 Bytes (0%)
  • other: 0 Bytes (0%)
  • contentScripts: 1.38 KiB (0.07%)
  • zip: 99.7 KiB (0.36%)

Resolves the browserify-removal conflicts by accepting main's deletion of
`development/build/index.js` and `development/build/scripts.js`; the
branch's browserify-side Sentry wiring is obsolete with that pipeline
gone, and the webpack path carries its own equivalent.
@metamask-ci

metamask-ci Bot commented Jul 16, 2026

Copy link
Copy Markdown
Contributor
Builds ready [28b2a81]
⚡ Performance Benchmarks (Total: 🟢 13 pass · 🟡 11 warn · 🔴 0 fail)

Baseline (latest main): 576a79f | Date: 7/16/2026 | Pipeline: 29533416609 | Baseline logs

Interaction Benchmarks · Samples: 5
Benchmarkchrome-webpackfirefox-webpack
loadNewAccount
[Sentry log · main/release]
🟢 [CI log]🟢 [CI log]
🔴 load_new_account
confirmTx
[Sentry log · main/release]
🟢 [CI log]🟢 [CI log]
bridgeUserActions
[Sentry log · main/release]
🟢 [CI log]🟡 [CI log]

📈 Results compared to the previous 5 runs on main

  • confirmTx/longTaskMaxDuration: +10%
  • confirmTx/inp: +20%
  • bridgeUserActions/longTaskCount: +25%
  • bridgeUserActions/longTaskTotalDuration: +21%
  • bridgeUserActions/lcp: -13%
  • loadNewAccount/load_new_account: +566%
  • loadNewAccount/total: +566%
  • loadNewAccount/inp: -24%
  • loadNewAccount/fcp: -46%
  • loadNewAccount/lcp: +1209%
  • confirmTx/longTaskCount: -100%
  • confirmTx/longTaskTotalDuration: -100%
  • confirmTx/longTaskMaxDuration: -100%
  • confirmTx/tbt: -100%
  • confirmTx/inp: +30%
  • confirmTx/fcp: -46%
  • confirmTx/lcp: +1196%
  • bridgeUserActions/bridge_load_page: +181%
  • bridgeUserActions/bridge_load_asset_picker: +96%
  • bridgeUserActions/longTaskCount: -100%
  • bridgeUserActions/longTaskTotalDuration: -100%
  • bridgeUserActions/longTaskMaxDuration: -100%
  • bridgeUserActions/tbt: -100%
  • bridgeUserActions/total: +187%
  • bridgeUserActions/fcp: +11%
  • bridgeUserActions/lcp: +1006%

🌐 Core Web Vitals — 🟢 good · 🟡 needs improvement · 🔴 poor (web.dev thresholds)

  • 🟡 bridgeUserActions/FCP: p75 1.8s
Startup Benchmarks · Samples: 100
Benchmarkchrome-webpackfirefox-webpack
startupStandardHome
[Sentry log · main/release]
🟢 [CI log]🟡 [CI log]
🟡 loadScripts
startupPowerUserHome
[Sentry log · main/release]
🟡 [CI log]

📈 Results compared to the previous 5 runs on main

  • startupStandardHome/initialActions: +15%
  • startupStandardHome/setupStore: -19%
  • startupStandardHome/longTaskCount: +15%
  • startupStandardHome/lcp: -37%
  • startupStandardHome/domInteractive: +42%
  • startupStandardHome/backgroundConnect: +11%
  • startupStandardHome/fcp: +39%
  • startupPowerUserHome/domInteractive: -14%
  • startupPowerUserHome/backgroundConnect: -26%
  • startupPowerUserHome/setupStore: +33%
  • startupPowerUserHome/fcp: -14%

🌐 Core Web Vitals — 🟢 good · 🟡 needs improvement · 🔴 poor (web.dev thresholds)

  • 🟡 startupPowerUserHome/INP: p75 224ms
  • 🟡 startupPowerUserHome/LCP: p75 3.7s
User Journey Benchmarks · Samples: 5 · mock API
Benchmarkchrome-webpackfirefox-webpack
onboardingImportWallet
[Sentry log · main/release]
🟡 [CI log]
🟡 total
🟢 [CI log]
onboardingNewWallet
[Sentry log · main/release]
🟢 [CI log]🟡 [CI log]
🟡 total
assetDetails
[Sentry log · main/release]
🟢 [CI log]🟡 [CI log]
solanaAssetDetails
[Sentry log · main/release]
🟢 [CI log]🟡 [CI log]
importSrpHome
[Sentry log · main/release]
🟡 [CI log]🟡 [CI log]
sendTransactions
[Sentry log · main/release]
🟢 [CI log]🟡 [CI log]
swap
[Sentry log · main/release]
🟢 [CI log]🟡 [CI log]

📈 Results compared to the previous 5 runs on main

  • onboardingImportWallet/metricsToWalletReadyScreen: -13%
  • onboardingImportWallet/doneButtonToHomeScreen: -78%
  • onboardingImportWallet/openAccountMenuToAccountListLoaded: -27%
  • onboardingImportWallet/longTaskCount: -91%
  • onboardingImportWallet/longTaskTotalDuration: -97%
  • onboardingImportWallet/longTaskMaxDuration: -93%
  • onboardingImportWallet/tbt: -100%
  • onboardingImportWallet/total: -74%
  • onboardingNewWallet/srpButtonToPwForm: -10%
  • onboardingNewWallet/doneButtonToAssetList: -36%
  • onboardingNewWallet/longTaskCount: -69%
  • onboardingNewWallet/longTaskTotalDuration: -84%
  • onboardingNewWallet/longTaskMaxDuration: -51%
  • onboardingNewWallet/tbt: -78%
  • onboardingNewWallet/total: -29%
  • solanaAssetDetails/assetClickToPriceChart: -71%
  • solanaAssetDetails/longTaskCount: -100%
  • solanaAssetDetails/longTaskTotalDuration: -100%
  • solanaAssetDetails/longTaskMaxDuration: -100%
  • solanaAssetDetails/tbt: -100%
  • solanaAssetDetails/total: -71%
  • solanaAssetDetails/cls: -86%
  • importSrpHome/loginToHomeScreen: -32%
  • importSrpHome/openAccountMenuAfterLogin: -76%
  • importSrpHome/homeAfterImportWithNewWallet: -30%
  • importSrpHome/longTaskCount: -63%
  • importSrpHome/longTaskTotalDuration: -62%
  • importSrpHome/longTaskMaxDuration: -16%
  • importSrpHome/tbt: -63%
  • importSrpHome/total: -29%
  • importSrpHome/inp: -31%
  • importSrpHome/cls: -43%
  • sendTransactions/openSendPageFromHome: -17%
  • sendTransactions/reviewTransactionToConfirmationPage: -71%
  • sendTransactions/longTaskCount: -100%
  • sendTransactions/longTaskTotalDuration: -100%
  • sendTransactions/longTaskMaxDuration: -100%
  • sendTransactions/tbt: -100%
  • sendTransactions/total: -69%
  • sendTransactions/inp: -39%
  • sendTransactions/cls: -53%
  • swap/openSwapPageFromHome: -22%
  • swap/fetchAndDisplaySwapQuotes: +165%
  • swap/longTaskCount: -17%
  • swap/longTaskTotalDuration: -31%
  • swap/longTaskMaxDuration: -23%
  • swap/tbt: -77%
  • swap/total: +162%
  • swap/cls: -86%

🌐 Core Web Vitals — 🟢 good · 🟡 needs improvement · 🔴 poor (web.dev thresholds)

  • 🟡 importSrpHome/INP: p75 264ms
  • 🟡 assetDetails/FCP: p75 1.9s
  • 🟡 solanaAssetDetails/FCP: p75 1.9s
  • 🟡 importSrpHome/FCP: p75 1.9s
  • 🟡 sendTransactions/FCP: p75 1.9s
  • 🟡 swap/FCP: p75 1.9s
Dapp Page Load Benchmarks · Samples: 100
Benchmarkchrome-webpack
dappPageLoad
[Sentry log · main/release]
🟢 [CI log]
Bundle size diffs [🚨 Warning! Bundle size has increased!]
  • background: 86.75 KiB (0.59%)
  • ui: 112.44 KiB (0.64%)
  • common: 0 Bytes (0%)
  • other: 0 Bytes (0%)
  • contentScripts: 1.36 KiB (0.07%)
  • zip: 94.8 KiB (0.34%)

…entation

SDK module scope and init run, globals and hooks exist, but all event
processing, instrumentation, and transport are off. Arm A (tracing
stripped) still stalled; this arm separates non-tracing init from bare
SDK presence. Do not merge.
@MajorLift
MajorLift force-pushed the jongsun/probe/42867-sentry-disabled-e2e branch from 28b2a81 to f67fd74 Compare July 16, 2026 21:17
@sonarqubecloud

Copy link
Copy Markdown

Quality Gate Failed Quality Gate failed

Failed conditions
25.0% Coverage on New Code (required ≥ 80%)

See analysis details on SonarQube Cloud

@metamask-ci

metamask-ci Bot commented Jul 16, 2026

Copy link
Copy Markdown
Contributor
Builds ready [f67fd74]
⚡ Performance Benchmarks (Total: 🟢 14 pass · 🟡 10 warn · 🔴 0 fail)

Baseline (latest main): 576a79f | Date: 7/16/2026 | Pipeline: 29535479307 | Baseline logs

Interaction Benchmarks · Samples: 5
Benchmarkchrome-webpackfirefox-webpack
loadNewAccount
[Sentry log · main/release]
🟢 [CI log]🟡 [CI log]
confirmTx
[Sentry log · main/release]
🟢 [CI log]🟢 [CI log]
bridgeUserActions
[Sentry log · main/release]
🟢 [CI log]🟢 [CI log]

📈 Results compared to the previous 5 runs on main

  • loadNewAccount/cls: +1445%
  • bridgeUserActions/bridge_load_page: -23%
  • bridgeUserActions/longTaskCount: +25%
  • bridgeUserActions/longTaskTotalDuration: +21%
  • bridgeUserActions/tbt: +27%
  • bridgeUserActions/lcp: -11%
  • bridgeUserActions/cls: +1445%
  • loadNewAccount/inp: -24%
  • loadNewAccount/fcp: -59%
  • loadNewAccount/lcp: +1351%
  • bridgeUserActions/bridge_load_page: +116%
  • bridgeUserActions/bridge_load_asset_picker: +32%
  • bridgeUserActions/longTaskCount: -100%
  • bridgeUserActions/longTaskTotalDuration: -100%
  • bridgeUserActions/longTaskMaxDuration: -100%
  • bridgeUserActions/tbt: -100%
  • bridgeUserActions/total: +12%
  • bridgeUserActions/fcp: -57%
  • bridgeUserActions/lcp: +837%

🌐 Core Web Vitals — 🟢 good · 🟡 needs improvement · 🔴 poor (web.dev thresholds)

  • 🟡 loadNewAccount/LCP: p75 2.6s
Startup Benchmarks · Samples: 100
Benchmarkchrome-webpackfirefox-webpack
startupStandardHome
[Sentry log · main/release]
🟢 [CI log]🟢 [CI log]
startupPowerUserHome
[Sentry log · main/release]
🟡 [CI log]

📈 Results compared to the previous 5 runs on main

  • startupStandardHome/initialActions: +15%
  • startupStandardHome/numNetworkReqs: -29%
  • startupStandardHome/longTaskCount: +15%
  • startupStandardHome/lcp: -33%
  • startupStandardHome/domInteractive: +34%
  • startupStandardHome/backgroundConnect: -12%
  • startupStandardHome/firstReactRender: -11%
  • startupStandardHome/setupStore: -32%
  • startupStandardHome/numNetworkReqs: -35%
  • startupStandardHome/fcp: +22%
  • startupPowerUserHome/uiStartup: -15%
  • startupPowerUserHome/load: -11%
  • startupPowerUserHome/domContentLoaded: -11%
  • startupPowerUserHome/domInteractive: -24%
  • startupPowerUserHome/backgroundConnect: -40%
  • startupPowerUserHome/loadScripts: -10%
  • startupPowerUserHome/setupStore: -92%
  • startupPowerUserHome/numNetworkReqs: -54%
  • startupPowerUserHome/fcp: -12%
  • startupPowerUserHome/lcp: -15%

🌐 Core Web Vitals — 🟢 good · 🟡 needs improvement · 🔴 poor (web.dev thresholds)

  • 🟡 startupPowerUserHome/INP: p75 208ms
  • 🟡 startupPowerUserHome/LCP: p75 3.0s
User Journey Benchmarks · Samples: 5 · mock API
Benchmarkchrome-webpackfirefox-webpack
onboardingImportWallet
[Sentry log · main/release]
🟡 [CI log]
🟡 total
🟢 [CI log]
onboardingNewWallet
[Sentry log · main/release]
🟢 [CI log]🟡 [CI log]
🟡 total
assetDetails
[Sentry log · main/release]
🟡 [CI log]🟡 [CI log]
solanaAssetDetails
[Sentry log · main/release]
🟢 [CI log]🟢 [CI log]
importSrpHome
[Sentry log · main/release]
🟡 [CI log]🟡 [CI log]
sendTransactions
[Sentry log · main/release]
🟢 [CI log]🟡 [CI log]
swap
[Sentry log · main/release]
🟢 [CI log]🟡 [CI log]

📈 Results compared to the previous 5 runs on main

  • onboardingImportWallet/doneButtonToHomeScreen: -91%
  • onboardingImportWallet/openAccountMenuToAccountListLoaded: +340%
  • onboardingImportWallet/longTaskCount: -91%
  • onboardingImportWallet/longTaskTotalDuration: -96%
  • onboardingImportWallet/longTaskMaxDuration: -91%
  • onboardingImportWallet/tbt: -99%
  • onboardingImportWallet/total: -75%
  • onboardingNewWallet/doneButtonToAssetList: -41%
  • onboardingNewWallet/longTaskCount: -69%
  • onboardingNewWallet/longTaskTotalDuration: -80%
  • onboardingNewWallet/longTaskMaxDuration: -58%
  • onboardingNewWallet/tbt: -91%
  • onboardingNewWallet/total: -36%
  • solanaAssetDetails/assetClickToPriceChart: -55%
  • solanaAssetDetails/longTaskCount: -100%
  • solanaAssetDetails/longTaskTotalDuration: -100%
  • solanaAssetDetails/longTaskMaxDuration: -100%
  • solanaAssetDetails/tbt: -100%
  • solanaAssetDetails/total: -55%
  • solanaAssetDetails/cls: +112%
  • importSrpHome/loginToHomeScreen: -28%
  • importSrpHome/openAccountMenuAfterLogin: -71%
  • importSrpHome/homeAfterImportWithNewWallet: +11%
  • importSrpHome/longTaskCount: -56%
  • importSrpHome/longTaskTotalDuration: -61%
  • importSrpHome/longTaskMaxDuration: -27%
  • importSrpHome/tbt: -62%
  • importSrpHome/inp: -33%
  • importSrpHome/cls: +780%
  • sendTransactions/selectTokenToSendFormLoaded: -19%
  • sendTransactions/reviewTransactionToConfirmationPage: -97%
  • sendTransactions/longTaskCount: -100%
  • sendTransactions/longTaskTotalDuration: -100%
  • sendTransactions/longTaskMaxDuration: -100%
  • sendTransactions/tbt: -100%
  • sendTransactions/total: -95%
  • sendTransactions/inp: -33%
  • sendTransactions/lcp: -16%
  • sendTransactions/cls: +112%
  • swap/openSwapPageFromHome: -33%
  • swap/fetchAndDisplaySwapQuotes: +172%
  • swap/longTaskCount: +67%
  • swap/longTaskTotalDuration: +37%
  • swap/longTaskMaxDuration: -18%
  • swap/tbt: -59%
  • swap/total: +169%
  • swap/cls: +112%

🌐 Core Web Vitals — 🟢 good · 🟡 needs improvement · 🔴 poor (web.dev thresholds)

  • 🟡 assetDetails/INP: p75 208ms
  • 🟡 importSrpHome/INP: p75 256ms
  • 🟡 assetDetails/FCP: p75 2.0s
  • 🟡 importSrpHome/FCP: p75 1.8s
  • 🟡 sendTransactions/FCP: p75 1.8s
  • 🟡 swap/FCP: p75 1.9s
Dapp Page Load Benchmarks · Samples: 100
Benchmarkchrome-webpack
dappPageLoad
[Sentry log · main/release]
🟢 [CI log]
Bundle size diffs [🚨 Warning! Bundle size has increased!]
  • background: 87.32 KiB (0.6%)
  • ui: 112.42 KiB (0.64%)
  • common: 0 Bytes (0%)
  • other: 0 Bytes (0%)
  • contentScripts: 1.36 KiB (0.07%)
  • zip: 95.44 KiB (0.34%)

@MajorLift MajorLift closed this Jul 17, 2026
@github-actions github-actions Bot locked and limited conversation to collaborators Jul 17, 2026
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

INVALID-PR-TEMPLATE PR's body doesn't match template no-changelog no-changelog Indicates no external facing user changes, therefore no changelog documentation needed size-XL team-extension-platform Extension Platform team

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants