From 11524381d170d587f2afe98e1c17e8c86251eb64 Mon Sep 17 00:00:00 2001 From: tom Date: Fri, 10 Nov 2023 13:28:19 -0300 Subject: [PATCH] [skip ci] silence WalletConnect and ads errors in Sentry --- lib/sentry/config.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lib/sentry/config.ts b/lib/sentry/config.ts index cffc40e696..fb6ea34b59 100644 --- a/lib/sentry/config.ts +++ b/lib/sentry/config.ts @@ -51,6 +51,10 @@ export const config: Sentry.BrowserOptions | undefined = (() => { 'conduitPage', // Generic error code from errors outside the security sandbox 'Script error.', + + // Relay and WalletConnect errors + 'Attempt to connect to relay via', + 'WebSocket connection failed for URL: wss://relay.walletconnect.com', ], denyUrls: [ // Facebook flakiness @@ -67,6 +71,12 @@ export const config: Sentry.BrowserOptions | undefined = (() => { /127\.0\.0\.1:4001\/isrunning/i, // Cacaoweb /webappstoolbarba\.texthelp\.com\//i, /metrics\.itunes\.apple\.com\.edgesuite\.net\//i, + + // AD fetch failed errors + /czilladx\.com/i, + /coinzilla\.com/i, + /coinzilla\.io/i, + /slise\.xyz/i, ], }; })();