Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.chainstack.com/llms.txt

Use this file to discover all available pages before exploring further.

TLDR:
  • In the Chainstack console, open your node’s Access and credentials section and click Connect wallet — MetaMask auto-detects, prompts you to add the network, and switches to it.
  • If your browser has no wallet extension or you want to add the network manually (including on mobile), use the manual flow below.
This is the fastest path and avoids typos in the RPC URL or chain ID.
  1. In the Chainstack console, open the project and the node you want to use.
  2. Scroll to the Access and credentials section.
  3. Click Connect wallet.
  4. MetaMask (or any other injected wallet) opens and asks you to approve adding the network. The RPC URL, chain ID, currency symbol, and explorer are pre-filled from the node’s metadata.
  5. Approve. MetaMask switches to the new network.
If the Connect wallet button doesn’t react, make sure your wallet extension is installed and unlocked in the same browser tab.

Manual setup

Use the manual flow when you don’t have a wallet extension in the current browser (for example, on mobile), or when you want to point MetaMask at the password-protected endpoint.

What you need

Browser extension (Chrome, Firefox, Edge, Brave)

  1. Open MetaMask and unlock your wallet.
  2. Click the network selector at the top of the popup → Add a network.
  3. Click Add a network manually at the bottom of the list.
  4. Fill in the network details:
    FieldValue
    Network nameAnything readable, e.g. BNB Smart Chain (Chainstack)
    New RPC URLYour Chainstack HTTPS endpoint, e.g. https://bsc-mainnet.core.chainstack.com/AUTH_KEY
    Chain IDThe decimal chain ID from chainlist.org (e.g. 56 for BNB Smart Chain)
    Currency symbolThe native token symbol (e.g. BNB)
    Block explorer URL (optional)A public explorer for the network (e.g. https://bscscan.com)
  5. Click Save. MetaMask switches to the new network.
  6. Verify the network name and currency symbol match what you expect.

Mobile app (iOS / Android)

  1. Open MetaMask Mobile and unlock your wallet.
  2. Tap the hamburger menu (top-left).
  3. Go to SettingsNetworks.
  4. Tap Add networkCustom networks tab.
  5. Fill in the same fields as in the table above and tap Add.

Troubleshooting

  • Chain ID mismatch. MetaMask refuses to add the network if the chain ID you typed doesn’t match what the RPC endpoint reports. Double-check the chain ID at chainlist.org.
  • Endpoint unreachable. If MetaMask reports the RPC endpoint as offline, verify the URL and authentication key. Test it directly:
    curl YOUR_CHAINSTACK_ENDPOINT \
      -H 'content-type: application/json' \
      -d '{"jsonrpc":"2.0","method":"eth_chainId","params":[],"id":1}'
    
  • Use trusted RPC URLs only. Custom networks can route every transaction you sign through the RPC you specify — only add endpoints you control or trust.

See also

Last modified on May 19, 2026