Wallet setup walkthrough

Add Ethereum to MetaMask

One click and manual instructions for adding Ethereum (chain ID 1) to MetaMask, Rabby, OKX Wallet, and any EIP 3085 compatible wallet. The same values work in Brave Wallet and Frame.

Add Ethereum Mainnet to MetaMask

One click for injected wallets, or paste the JSON into the manual Add Network form.

{
  "chainIdHex": "0x1",
  "chainName": "Ethereum Mainnet",
  "nativeCurrency": {
    "name": "Ether",
    "symbol": "ETH",
    "decimals": 18
  },
  "rpcUrls": [
    "https://eth.llamarpc.com"
  ],
  "blockExplorerUrls": [
    "https://etherscan.io"
  ]
}
Manual steps (no injected wallet)
  1. Open MetaMask, click the network dropdown, then Add Network.
  2. Click "Add a network manually".
  3. Network name: Ethereum Mainnet.
  4. New RPC URL: https://eth.llamarpc.com.
  5. Chain ID: 1.
  6. Currency symbol: ETH.
  7. Block explorer URL: https://etherscan.io.
  8. Save and switch.

Verify what you are pasting

Before you save, double check the chain ID and the RPC URL. A wrong chain ID will let MetaMask sign transactions that no node will accept; a wrong or malicious RPC URL can show you fake balances. The values below match the Ethereum foundation docs as of 2026-05-15.

  • Chain ID: 1 (hex 0x1)
  • Native currency: ETH (18 decimals)
  • RPC URL: https://eth.llamarpc.com
  • Block explorer: https://etherscan.io

See the full reference page: Ethereum chain details.

Compatible wallets

The wallet add JSON above follows EIP 3085 (wallet_addEthereumChain). Any wallet that implements the standard will accept it. That includes MetaMask, Rabby, OKX Wallet, Brave Wallet, Frame, Trust Wallet, and most hardware wallet companion apps.

  • MetaMask

    Browser extension and mobile

  • Rabby

    Built around tx simulation and safety

  • OKX Wallet

    Multi chain with EVM + non EVM support

Safety notes

  • Only paste RPC URLs from sources you trust. A bad RPC can lie to your wallet about balances and gas.
  • Never paste your seed phrase into any "Add Network" flow. EIP 3085 does not need it.
  • If a dapp asks you to switch to a network it tried to add itself, verify the chain ID in MetaMask matches the official number above before approving.