RPC endpoints
Learn how to connect to Mandala Testnet (Mandala Chain) using various RPC endpoints and configure your development environment for live testnet interaction. Mandala Testnet is the public testnet for Mandala Chain, providing developers with a live environment to test their applications, smart contracts, and parachain functionality before deploying to production networks.
Network Information
Network Name: Mandala
Chain Type: Polkadot Parachain
Para ID: 4818
Native Token: KPGT
Block Time: ~12 seconds
Primary RPC Endpoints
WebSocket (WSS):
wss://rpc1.paseo.mandalachain.io
Secondary RPC Endpoints
wss://rpc2.paseo.mandalachain.io
HTTP(S):
https://rpc1.paseo.mandalachain.io
https://rpc2.paseo.mandalachain.io
Connection Configuration
Polkadot.js Apps
- Navigate to: https://polkadot.js.org/apps/
- Click on the network selector (top-left corner)
- Select "Development" → "Custom"
- Enter WebSocket URL:
wss://rpc1.paseo.mandalachain.io
- Click "Switch" to connect
MetaMask Configuration
For EVM development, add Mandala to MetaMask:
- Open MetaMask and click on network dropdown
- Select "Add Network" → "Add a network manually"
- Configure network settings:
Field | Value |
---|---|
Network Name | Mandala Testnet |
New RPC URL | https://rpc1.paseo.mandalachain.io |
Chain ID | 4818 |
Currency Symbol | KPGT |
Verifying Connection
Check Network Status
Using Polkadot.js Apps:
- Navigate to Explorer → Chain info
- Verify you see recent blocks being produced
- Check that the chain name shows "Mandala"
Using Command Line:
# Check latest block
curl -H "Content-Type: application/json" \
-d '{"id":1, "jsonrpc":"2.0", "method": "chain_getBlock"}' \
https://rpc1.paseo.mandalachain.io
# Get chain info
curl -H "Content-Type: application/json" \
-d '{"id":1, "jsonrpc":"2.0", "method": "system_chain"}' \
https://rpc1.paseo.mandalachain.io
Network Health Check
Verify network connectivity:
# WebSocket connection test
wscat -c wss://rpc1.paseo.mandalachain.io
# HTTP endpoint test
curl -s https://rpc1.paseo.mandalachain.io/health
Next Steps
With your Mandala Testnet connection configured, you're ready to:
- Set up Polkadot.js Interface - Learn to navigate and use Polkadot.js Apps
- Create your first account - Set up wallets for testing
For advanced configuration and custom setups, refer to the Polkadot documentation .