Arc MainnetChain:5042

Technical reference

Network details

Arc mainnet network configuration: chain ID 5042, RPC, explorer, and USDC as native currency.

ArcDAO runs on Arc mainnet. Add the network to your wallet with these values.

FieldValue
Network nameArc
Chain ID5042 (0x13B2)
RPC URLhttps://rpc.mainnet.arc.io
Explorerhttps://arc-scan.org
Native currencyUSDC (6 decimals)

Wallet config

json
{
  "chainId": "0x13B2",
  "chainName": "Arc",
  "nativeCurrency": { "name": "USD Coin", "symbol": "USDC", "decimals": 6 },
  "rpcUrls": ["https://rpc.mainnet.arc.io"],
  "blockExplorerUrls": ["https://arc-scan.org"]
}

Add via EIP-3085

javascript
await window.ethereum.request({
  method: "wallet_addEthereumChain",
  params: [{
    chainId: "0x13B2",
    chainName: "Arc",
    nativeCurrency: { name: "USD Coin", symbol: "USDC", decimals: 6 },
    rpcUrls: ["https://rpc.mainnet.arc.io"],
    blockExplorerUrls: ["https://arc-scan.org"],
  }],
});

Connecting a wallet on this site adds and switches to Arc for you automatically.

Was this helpful?
Suggest an edit