From 8d32a3a7ee4e2aae6e2291e84fa384065ccda714 Mon Sep 17 00:00:00 2001 From: satyakwok <119509589+satyakwok@users.noreply.github.com> Date: Sun, 10 May 2026 19:43:33 +0200 Subject: [PATCH] docs: align Networks section + add MetaMask guide MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Mainnet name was "Sentrix Mainnet" — every official source (frontend chain configs, genesis, chainlist submission) actually uses "Sentrix Chain". Updated. Networks section also gains the RPC URLs (previously only chain ID and explorer were listed) so users can copy-paste into MetaMask without a second hop. Adds the MetaMask setup guide that issue #1 asked for, with values matching the chainlist submission. Testnet block explorer points at scan-testnet.sentrixchain.com (the dedicated testnet host) so EIP-3091 deeplinks route correctly. Drops the now-completed "Add Sentrix to MetaMask" line from the recommended-topics list. Supersedes #3 — same intent, corrected values. --- README.md | 34 ++++++++++++++++++++++++++++++---- 1 file changed, 30 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 689c7dd..df74210 100644 --- a/README.md +++ b/README.md @@ -41,9 +41,10 @@ A curated list of official resources, developer tools, infrastructure, applicati ### Mainnet -- Network Name: `Sentrix Mainnet` +- Network Name: `Sentrix Chain` - Chain ID: `7119` - Currency Symbol: `SRX` +- RPC URL: `https://rpc.sentrixchain.com` - Explorer: [scan.sentrixchain.com](https://scan.sentrixchain.com) ### Testnet @@ -51,7 +52,8 @@ A curated list of official resources, developer tools, infrastructure, applicati - Network Name: `Sentrix Testnet` - Chain ID: `7120` - Currency Symbol: `SRX` -- Explorer: [scan.sentrixchain.com](https://scan.sentrixchain.com) +- RPC URL: `https://testnet-rpc.sentrixchain.com` +- Explorer: [scan-testnet.sentrixchain.com](https://scan-testnet.sentrixchain.com) - Faucet: [faucet.sentrixchain.com](https://faucet.sentrixchain.com) ## Core Protocol @@ -98,11 +100,35 @@ A curated list of official resources, developer tools, infrastructure, applicati ## Tutorials -Official tutorials should be added here as they become available. +### Add Sentrix to MetaMask + +Sentrix Chain is EVM-compatible, so mainnet and testnet both add as custom networks in MetaMask. Open **Settings → Networks → Add a network → Add a network manually** and use the values below. + +#### Sentrix Chain (mainnet) + +| Field | Value | +| --- | --- | +| Network name | `Sentrix Chain` | +| New RPC URL | `https://rpc.sentrixchain.com` | +| Chain ID | `7119` | +| Currency symbol | `SRX` | +| Block explorer URL | `https://scan.sentrixchain.com` | + +#### Sentrix Testnet + +| Field | Value | +| --- | --- | +| Network name | `Sentrix Testnet` | +| New RPC URL | `https://testnet-rpc.sentrixchain.com` | +| Chain ID | `7120` | +| Currency symbol | `SRX` | +| Block explorer URL | `https://scan-testnet.sentrixchain.com` | +| Faucet | `https://faucet.sentrixchain.com` | + +Use the [Sentrix Faucet](https://faucet.sentrixchain.com) to request testnet SRX after adding Sentrix Testnet. Recommended tutorial topics: -- Add Sentrix to MetaMask - Get testnet SRX from the faucet - Deploy a Solidity contract on Sentrix - Read Sentrix blocks with viem