Skip to content

Commit 22cea5b

Browse files
committed
Dashboard: Update bridge stats (#8483)
<!-- ## title your PR with this format: "[SDK/Dashboard/Portal] Feature/Fix: Concise title for the changes" If you did not copy the branch name from Linear, paste the issue tag here (format is TEAM-0000): ## Notes for the reviewer Anything important to call out? Be sure to also clarify these in your comments. ## How to test Unit tests, playground, etc. --> <!-- start pr-codex --> --- ## PR-Codex overview This PR updates the `supportedTokens` values in the `data.ts` file to reflect an increase in the number of supported tokens for the bridge feature. ### Detailed summary - Updated `supportedTokens` from `"10,000+"` to `"14,000+"` (string format). - Updated `supportedTokens` from `10000` to `14000` (numeric format). > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex --> <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Updates** * Bridge now supports 14,000+ tokens, increased from 10,000+. <sub>✏️ Tip: You can customize this high-level summary in your review settings.</sub> <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent d0e4db2 commit 22cea5b

File tree

1 file changed

+2
-2
lines changed
  • apps/dashboard/src/app/bridge

1 file changed

+2
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
export const bridgeStats = {
22
supportedChains: "95+",
3-
supportedTokens: "10,000+",
3+
supportedTokens: "14,000+",
44
supportedRoutes: "15M+",
55
};
66

77
export const bridgeStatsNumbers = {
88
supportedChains: 95,
9-
supportedTokens: 10000,
9+
supportedTokens: 14000,
1010
supportedRoutes: 15000000,
1111
};

0 commit comments

Comments
 (0)