docs: clarify Arc Testnet chain ID is 5042002, not 1516#148
Conversation
Add a Networks section to the README documenting Arc's official chain IDs and the correct wallet configuration for Arc Testnet, with a prominent note that the incorrectly-circulated value 1516 is wrong. Fixes circlefin#94
Document that testnet.arcscan.app and docs.arc.network are the canonical Arc Testnet explorer and docs, and that the dead explorer.testnet.arc.network, explorer.arc.io, and docs.arc.io URLs should not be used. Fixes circlefin#81
…laim docs.arc.io is the live canonical docs host (docs.arc.network 301-redirects to it), so it does not belong in the dead-URL list. Keep the note focused on the block explorer: testnet.arcscan.app is canonical; explorer.testnet.arc.network (unreachable) and explorer.arc.io (team-login-gated) are not publicly usable.
Confirming 5042002 — also documenting the USDC-as-native-gas decimal trapWe've been running on Chain ID One additional nuance that trips up first-time Arc wallet integrations beyond the chain ID confusion: The
|
| Item | Value |
|---|---|
| Chain ID | 5042002 (0x4cef52) |
| RPC | https://rpc.testnet.arc.network |
| Explorer | https://testnet.arcscan.app |
| USDC ERC-20 | 0x3600000000000000000000000000000000000000 |
| EURC ERC-20 | 0x89B50855Aa3bE2F677cD6303Cec089B5F319D72a |
nativeCurrency.decimals (for wallet registration) |
18 |
| CCTP Domain ID | 26 |
| TokenMessengerV2 | 0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA |
| MessageTransmitterV2 | 0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275 |
minFinalityThreshold for CCTP v2 |
2000 |
Source: wallet.tsx + contracts.ts
|
Thanks @osr21 Independently checked the rest of your table against Circle's references earlier and it lines up: chain ID 5042002 / 0x4cef52, USDC at 0x3600…0000, CCTP domain 26, and the V2 TokenMessenger/MessageTransmitter addresses. Handy to have it all in one place for anyone landing on this PR. |
|
Confirming the table from our Arc Relay Bridge implementation (CCTP V2 Arc ↔ Sepolia / Base Sepolia / Fuji). Three additions for anyone going past wallet setup into CCTP integration: RPC reliability: CCTP V2 selector: All Arc Testnet CCTP contracts require the V2 7-param
The |
Closes #94.
Fixes #81.
Summary
Arc Testnet's chain ID is
5042002(0x4cef52), but some third-party chain registries and older community guides circulate the incorrect value1516, causing wallet connection failures. Separately, several Arc Testnet block explorer URLs that circulate in external guides and wallet configs are dead (unreachable / login-gated).Note: this repo's code and config were already consistent on
5042002, and contained no dead explorer URLs — both bad values circulate outside this repo. The gap was the lack of a clear, discoverable network reference for people setting up wallets/tooling. This PR adds one.Changes
README.md:5042), Testnet (5042002), Devnet (5042001)[!IMPORTANT]callout that1516is incorrect, with acurlsnippet to verify the chain ID straight from a node (Chain ID inconsistency: some documentation references 1516, actual Arc Testnet chain ID is 5042002 #94)[!NOTE]callout namingtestnet.arcscan.appas the canonical block explorer and flagging the non-usableexplorer.testnet.arc.network(unreachable) andexplorer.arc.io(team-login-gated) URLs (docs: multiple Arc Testnet block explorer URLs are dead — testnet.arcscan.app is the live explorer #81)Out of scope
Issue #94 also suggests submitting a PR to
ethereum-lists/chains, and #81's remaining fixes live in third-party registries / MetaMask guides. Those are external registries, separate from this repo.Test plan
crates/shared/src/chain_ids.rs