From e5519eaef91c22a9116ae8606c5d5641b3a75576 Mon Sep 17 00:00:00 2001 From: MananTank Date: Mon, 5 Jan 2026 16:11:01 +0000 Subject: [PATCH] Dashboard: Update bridge supported tokens count (#8602) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ## PR-Codex overview This PR updates the `supportedTokens` value in the `data.ts` file for the bridge statistics, reflecting an increase in the number of supported tokens. ### Detailed summary - Updated `supportedTokens` from `"14,000+"` to `"17,000+"`. - Changed `supportedTokens` from `14000` to `17000` in the `bridgeStatsNumbers` object. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` ## Summary by CodeRabbit * **Updates** * Increased supported tokens count from 14,000+ to 17,000+ on the bridge dashboard. ✏️ Tip: You can customize this high-level summary in your review settings. --- apps/dashboard/src/app/bridge/(general)/data.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/dashboard/src/app/bridge/(general)/data.ts b/apps/dashboard/src/app/bridge/(general)/data.ts index 93c71419953..940555be91f 100644 --- a/apps/dashboard/src/app/bridge/(general)/data.ts +++ b/apps/dashboard/src/app/bridge/(general)/data.ts @@ -1,11 +1,11 @@ export const bridgeStats = { supportedChains: "95+", - supportedTokens: "14,000+", + supportedTokens: "17,000+", supportedRoutes: "15M+", }; export const bridgeStatsNumbers = { supportedChains: 95, - supportedTokens: 14000, + supportedTokens: 17000, supportedRoutes: 15000000, };