Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions apps/dashboard/src/app/(app)/(dashboard)/(chain)/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,11 @@ const chainMetaRecord = {
"Lisk is focused on serving builders in high-growth markets like Africa and Southeast Asia. When you build on Lisk, you become part of the strongest Ethereum collective, alongside Coinbase, Sony, World, Kraken and Uniswap -- the OP Superchain.",
headerImgUrl: liskBanner.src,
},
//Sei Mainnet
1329: {
about:
"Sei is a blockchain designed for fast, cheap financial transactions, combining the network effects of Ethereum with the performance of Solana. Sei has processed more than four billion transactions across more than 80 million wallets and has become the #1 EVM chain by number of active users. The team is backed by top investors such as Multicoin, Jump, Coinbase Ventures, and Circle Ventures – and includes talent from companies like Robinhood, Google, Coinbase, Databricks, Uber, and Goldman Sachs.",
},
Comment on lines +288 to +292
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

Avoid hard‑coding time‑sensitive metrics and superlatives.

The “4B transactions / 80M wallets / #1 EVM chain” claims will quickly become stale and could be misleading in UI copy. Consider making this description evergreen or sourcing these metrics from a maintained API/CMS.

✏️ Suggested evergreen wording
     about:
-      "Sei is a blockchain designed for fast, cheap financial transactions, combining the network effects of Ethereum with the performance of Solana. Sei has processed more than four billion transactions across more than 80 million wallets and has become the `#1` EVM chain by number of active users. The team is backed by top investors such as Multicoin, Jump, Coinbase Ventures, and Circle Ventures – and includes talent from companies like Robinhood, Google, Coinbase, Databricks, Uber, and Goldman Sachs.",
+      "Sei is a blockchain designed for fast, low-cost financial transactions, combining the network effects of Ethereum with high-performance execution. Backed by leading investors and built by a team with experience from top tech and fintech companies.",
   },
🤖 Prompt for AI Agents
In `@apps/dashboard/src/app/`(app)/(dashboard)/(chain)/utils.ts around lines 288 -
292, The about string for the chain entry with key "1329" contains hard-coded,
time‑sensitive metrics (e.g., "4B transactions", "80M wallets", "#1 EVM chain");
update the "about" property to use evergreen wording or replace the static
metrics with dynamic values sourced from a maintained API/CMS; locate the object
with key 1329 and either change the copy to remove specific numbers and
superlatives or wire the field to read from a maintained data source (e.g., a
CMS client or metrics fetcher) and render the fetched values instead of
hard‑coding them.

//Reactive Mainnet
1597: {
about:
Expand Down
Loading