Network Configuration
Sui Sentinel supports both Mainnet (production) and Testnet (development) environments. This guide explains how to configure your integration for each network.Quick Reference
| Network | Status | Use Case |
|---|---|---|
| Mainnet | 🟢 Live | Production deployments, real assets |
| Testnet | 🟡 Available | Development, testing, experimentation |
Mainnet Configuration
Mainnet is the production environment where real transactions occur with actual SUI and SENTINEL tokens.Connection Details
RPC Endpoints
- Primary:
https://fullnode.mainnet.sui.io - Backup: Use a dedicated RPC provider like QuickNode or Alchemy for production applications
Explorer
View transactions and objects on SuiVision MainnetTestnet Configuration
Testnet is the development environment for testing your integration without risking real assets.Connection Details
RPC Endpoints
- Primary:
https://fullnode.testnet.sui.io
Faucet
Get test SUI from the Sui Testnet FaucetExplorer
View transactions and objects on SuiVision TestnetEnvironment-Specific Setup
Frontend Integration
When building a frontend application, use environment variables to switch between networks:Wallet Configuration
Ensure your wallet is connected to the correct network:Best Practices
Always test on Testnet first
Monitor gas prices
Troubleshooting
Common Issues
| Issue | Solution |
|---|---|
| ”Package not found” | Verify you’re connected to the correct network |
| ”Insufficient balance” | For Mainnet: ensure you have real SUI. For Testnet: request from faucet |
| ”Transaction failed” | Check the explorer for detailed error messages |
| ”Object not found” | The object may not exist on your current network |
Network Status
Check the official Sui network status:- Sui Mainnet Status
- Sui Discord for real-time updates
Additional Resources
- Contract Addresses — Complete address reference
- Sui Documentation — Official Sui network docs
- SuiVision Explorer — Browse Mainnet transactions

