Solana Testnet
A local solana-test-validator running in Docker, exposed through the RPC proxy.
Endpoints
| Use | Endpoint | Notes |
|---|---|---|
| RPC (public) | https://testnet-solana.rpc.gateway.tribewarez.com | JSON-RPC, requestAirdrop |
| RPC (local) | http://127.0.0.1:8899 | Direct to validator |
| Faucet | 127.0.0.1:9900 | TCP faucet (host-bound) |
| Gossip | 127.0.0.1:8001 | For extra validators |
| TPU | 127.0.0.1:8002 | Transaction forwarding |
Airdrop SOL
bash
solana config set --url https://testnet-solana.rpc.gateway.tribewarez.com
solana airdrop 10Mining Modes
- Solo -- use RPC for transactions and airdrops
- Pool -- delegate stake to the validator's vote account
- Multi-validator -- expose gossip/TPU ports for additional validators
See MINING.md for full details.