Learn · Sei RPC Configuration

Sei RPC Endpoints — Chain ID and Network Configuration

Sei's chain ID is 1329. Public RPC endpoints are at evm-rpc.sei-apis.com. To use Sei from a custom wallet (MetaMask, Rabby, or anything that accepts a custom RPC), add Sei as a new network using the values below. Use these exact values — typos in chain ID can route transactions to the wrong network.

Skip the setup — download Sei Wallet

  • Open source
  • Free & open license
  • Independent audit
  • Signed builds

The values you need

ParameterValue
Network nameSei
Chain ID1329
Currency symbolSEI
RPC URL (official)https://evm-rpc.sei-apis.com
Block explorer URLhttps://seitrace.com
Cosmos legacy chain IDpacific-1

The chain ID 1329 is what your wallet uses to confirm it's talking to the right network. Don't accept a custom RPC config that uses a different chain ID for "Sei" — that's a fake or test network.

Recommended approach: chainlist.org

The simplest way to add Sei to MetaMask, Rabby, or any chainlist-compatible wallet is via chainlist.org/chain/1329. Connect your wallet, click Add to MetaMask (or equivalent), approve the network add. Chainlist auto-fills all parameters with verified values — lower-risk than typing values manually. Or skip the setup entirely and download Sei Wallet, which ships with the network preconfigured.

Manual setup (if chainlist isn't available)

MetaMask

  1. Open MetaMask → click the network dropdown at the top.
  2. Click Add networkAdd a network manually.
  3. Enter Network name Sei, RPC https://evm-rpc.sei-apis.com, Chain ID 1329, Symbol SEI, Explorer https://seitrace.com.
  4. Click Save.

Rabby

Open Rabby → network dropdown → Add Custom Network → enter the same values as above → Save.

Other EVM wallets

Most EVM wallets follow the same pattern. The key fields are chain ID (1329), RPC URL, and currency symbol (SEI). If your wallet doesn't have a "block explorer URL" field, that's optional.

Public RPC endpoints

Sei has multiple public RPC endpoints. The official one (run by Sei Labs) is the default chainlist publishes; community/redundant RPCs are useful under load.

  • Official: https://evm-rpc.sei-apis.com
  • Allnodes / PublicNode: https://sei-rpc.publicnode.com
  • Basement Nodes: https://evm-rpc.sei.basementnodes.ca
  • dRPC: https://sei.drpc.org
  • OmniaTech: https://endpoints.omniatech.io/v1/sei/mainnet/public

Verify current endpoints at sei.io/docs or chainlist.org. RPCs go in and out of service; the values above are accurate as of mid-2026 but treat them as "check before heavy use."

Archive RPCs (historical state)

For applications that need state at older block heights: Alchemy (alchemy.com/sei), QuickNode (quicknode.com/chains/sei), Blast API (blastapi.io). These are paid services for production applications.

Cosmos-side endpoints (legacy / pre-SIP-3)

For Cosmos-side tooling during the SIP-3 transition window:

  • Cosmos chain ID: pacific-1
  • Cosmos RPC: https://rpc.sei-apis.com
  • Cosmos REST: https://rest.sei-apis.com
  • Cosmos block explorer: https://www.mintscan.io/sei

These remain functional during SIP-3 transition but become read-only after the final cutover (mid-2026 target). For new development, target the EVM endpoints.

What to do if your transaction fails after RPC setup

  • "Wrong chain ID": Double-check chain ID is exactly 1329. Both number 1329 and string "1329" should work; 0x531 (hex) is also valid in some interfaces.
  • "RPC unreachable" / timeout: Switch to a community RPC. If multiple fail simultaneously, the chain may be undergoing an upgrade — check sei.io/status.
  • "Transaction reverted": Usually a smart-contract issue. Use seitrace.com to see the actual revert reason.
  • "Insufficient gas": Sei follows EIP-1559. Bump priority fee slightly and retry. Sei gas costs are generally low (~$0.0001).
  • Wallet shows wrong balance after RPC switch: Some wallets cache per RPC. Restart the wallet or refresh the network connection.

Adding Sei to a non-EVM tool

  • Cosmos SDK tooling (legacy): Use Cosmos endpoints above. EOL post-SIP-3 final cutover.
  • Generic chain indexers: The Graph (Sei subgraphs), Goldsky, Pyth oracle data via Pyth's standard EVM tooling.
  • dApp frameworks: Standard EVM frameworks work without modification — wagmi/viem, ethers.js, web3.js, Hardhat, Foundry.

Frequently asked questions