chore: align chain config to chainlist registry#49
Merged
Conversation
Standardize the canonical chain identity across every frontend app to match the ethereum-lists/chains submission (PR #8266). Three sources had each invented their own variant. Mainnet name: "Sentrix Chain" everywhere (was a mix of "Sentrix", "Sentrix Mainnet", "Sentrix Chain"). Testnet stays "Sentrix Testnet". Native currency: name "Sentrix", symbol "SRX" on both networks (chain-testnet.json was claiming "tSRX" — wrong, never existed on chain). RPC URLs: bare hostname, no /rpc suffix (both work, bare is the standard EVM convention). Testnet block explorer: scan-testnet.sentrixchain.com, not scan.sentrixchain.com — fixes the EIP-3091 routing complaint where testnet tx links opened the mainnet view. Also drops the retired Blockscout entry from chain.json. Display labels in coinblast network selector and solux NetworkHealth panel updated to match.
This was referenced May 10, 2026
5 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Standardize Sentrix Chain identity across every frontend app to match the ethereum-lists/chains submission (PR #8266). Three sources had each invented their own variant for the network name, native currency, and RPC URL pattern.
Final canonical values
nameSentrix ChainSentrix TestnetnativeCurrency.nameSentrixSentrixnativeCurrency.symbolSRXSRXhttps://rpc.sentrixchain.comhttps://testnet-rpc.sentrixchain.comhttps://scan.sentrixchain.comhttps://scan-testnet.sentrixchain.comNotable fixes
apps/chain-landing/public/chain-testnet.jsonwas declaringnativeCurrency.symbol: "tSRX"— that ticker has never existed on chain. NowSRX.apps/chain-landing/src/components/ui/add-to-wallet-button.tsxhadnativeCurrency.name: "SRX"(duplicating the symbol) — now"Sentrix", matching the EIP-3085 convention used by Ethereum (name: "Ether",symbol: "ETH").scan.sentrixchain.comtoscan-testnet.sentrixchain.com. Fixes the chainlist reviewer's complaint that testnet tx links opened the mainnet view — the two-host pattern (already used byapps/scan/lib/network-context.ts) makes EIP-3091 routing unambiguous.https://rpc.sentrixchain.com), no/rpcsuffix. Both forms work on the live Caddy LB; bare is the standard EVM convention and matches what most wallets paste in.chain.json.Files
12 files changed, all surfacing chain identity to wallets, RPC clients, or end-user UI:
packages/wallet-config/src/chain.ts,apps/scan/lib/chain.ts,apps/airdrop/src/lib/chain.ts,apps/coinblast/src/lib/chain.ts,apps/landing/lib/chain.tsapps/chain-landing/src/components/ui/add-to-wallet-button.tsxapps/chain-landing/public/chain.json,apps/chain-landing/public/chain-testnet.jsonapps/coinblast/src/app/create/page.tsx,apps/solux/src/components/NetworkHealth.tsxapps/coinblast/src/lib/ws.ts,apps/landing/components/sections/developers.tsxTest plan
pnpm -w build(all apps build)