Add BESC Hyperchain to Your Wallet
BESC Hyperchain is EVM-compatible. Any wallet that supports custom networks — MetaMask, Trust Wallet, Rabby, Frame, or any other EVM wallet — works out of the box.
MetaMask
Automatic (Recommended)
Visit either block explorer and click "Add BESC Hyperchain" in the network switcher:
- explorer2.beschyperchain.com — USA
- explorer.beschyperchain.com — Global
The explorer will prompt MetaMask to add the network automatically with the correct parameters.
Manual Configuration
Open MetaMask → Settings → Networks → Add a network → Add a network manually:
| Field | Value |
|---|---|
| Network Name | BESC Hyperchain |
| New RPC URL | https://hyper.beschyperchain.com |
| Chain ID | 2372 |
| Currency Symbol | BESC |
| Block Explorer URL | https://explorer2.beschyperchain.com |
Alternatively, use the global RPC:
| Field | Value |
|---|---|
| New RPC URL | https://rpc.beschyperchain.com |
Both RPCs serve the same chain. Choose the one geographically closer to you.
Other Wallets
Any wallet that accepts a custom EVM network uses the same parameters above. The key values are:
Chain ID: 2372
RPC HTTP: https://hyper.beschyperchain.com
RPC WS: wss://hyper.beschyperchain.com/ws
Symbol: BESC
Decimals: 18
Explorer: https://explorer2.beschyperchain.comVerifying Your Connection
Once connected, open the console in your wallet or use the RPC directly:
curl -s -X POST https://hyper.beschyperchain.com \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_chainId","params":[],"id":1}'Expected response:
{"jsonrpc":"2.0","id":1,"result":"0x944"}0x944 = 2372 in decimal — you are connected to BESC Hyperchain.
