0G Testnet (Galileo)
Test aplikasi Anda di infrastruktur 0G tanpa biaya atau risiko nyata.
Detail Jaringan
Parameter | Detail Jaringan |
---|---|
Nama Network | 0G-Galileo-Testnet |
Chain ID | 16601 |
Symbol Token | OG |
Block Explorer | https://chainscan-galileo.0g.ai |
Faucet | https://faucet.0g.ai |
✅ 3rd Party RPCs (Direkomendasikan untuk production)
Mulai Menggunakan
Step 1: Tambahkan Network ke Wallet
Hapus konfigurasi 0G testnet lama sebelum menambahkan Galileo untuk menghindari konflik.
🚀 Quick Add (Recommended)
Manual Configuration (Jika Quick Add Tidak Bekerja)
Untuk MetaMask:
- Buka MetaMask → Klik dropdown network → Add Network
- Isi detail berikut:
Network Name: 0G-Galileo-Testnet
New RPC URL: https://evmrpc-testnet.0g.ai
Chain ID: 16601
Currency Symbol: OG
Block Explorer URL: https://chainscan-galileo.0g.ai
- Save dan switch ke network baru
Untuk OKX Wallet:
- Buka OKX Wallet → Settings → Networks
- Add Custom Network dengan detail yang sama
- Confirm dan aktifkan network
Step 2: Setup Development Environment
Sebelum mulai building di 0G, Anda perlu menginstall beberapa tools dan dependencies yang dibutuhkan.
Prerequisites yang Harus Diinstall:
1. Node.js (LTS Version)
# Ubuntu/Debian
curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
sudo apt-get install -y nodejs
# macOS (dengan Homebrew)
brew install node
# Windows
# Download dari https://nodejs.org
2. Git
# Ubuntu/Debian
sudo apt-get install git
# macOS
brew install git
# Windows
# Download dari https://git-scm.com
3. Code Editor (Recommended: VS Code)
- Download dari https://code.visualstudio.com
- Install extension: Solidity untuk smart contract development
Install 0G Development Tools:
# Install Hardhat untuk smart contract development
npm install -g hardhat
# Install 0G SDK libraries (untuk project specific)
npm install @0glabs/0g-js-sdk
npm install @0glabs/0g-storage-client
npm install @0glabs/0g-compute-client
Verifikasi Installation:
# Check Node.js version
node --version # Should be v18+ or higher
# Check npm version
npm --version
# Check Git
git --version
# Check Hardhat
npx hardhat --version
Setelah semua tools terinstall, lanjut ke tutorial berikutnya untuk dapatkan test tokens dan mulai building!
Langkah Selanjutnya
Setelah environment setup complete:
- Faucet & Test Tokens - Dapatkan OG tokens gratis
- Deploy Smart Contracts - Deploy contract pertama
- Storage Integration - Menggunakan 0G Storage SDK
- Compute Integration - Menggunakan 0G Compute SDK
Useful Resources
Block Explorers
- Chain Explorer: View transaksi, blok, dan smart contracts
- Storage Explorer: Track operasi storage dan metrics
- Validator Dashboard: Monitor network validators
Contract Addresses (Reference)
Address ini dapat berubah selama fase testnet. Selalu check dokumentasi terbaru.
0G Storage
- Flow:
0xbD75117F80b4E22698D0Cd7612d92BDb8eaff628
- Mine:
0x3A0d1d67497Ad770d6f72e7f4B8F0BAbaa2A649C
- Market:
0x53191725d260221bBa307D8EeD6e2Be8DD265e19
- Reward:
0xd3D4D91125D76112AE256327410Dd0414Ee08Cb4
0G DA
- DAEntrance:
0xE75A073dA5bb7b0eC622170Fd268f35E675a957B
Deployment Block: 326165
Community Support
Indonesian Developer Community
- Discord ETHJKT: Indonesian developer community
- Telegram: Daily technical discussions
- Workshop ETHJKT: Monthly hands-on sessions
Global 0G Community
- Discord 0G: Official support dan faucet requests
- GitHub: Source code dan examples
- Documentation: Complete technical documentation
Environment setup complete! Lanjut ke tutorial berikutnya untuk mulai building aplikasi pertama Anda di 0G! 🚀
Next: Official 0G Documentation - Complete development guides