Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added high level examples and a table #619

Merged
merged 2 commits into from
Nov 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions docs/core/clusters.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,21 @@ An example of some of these Solana blockchain explorers include:
- [http://solanabeach.io/](http://solanabeach.io/).
- [http://validators.app/](http://validators.app/).

## On a high level

- Mainnet: Live production environment for deployed applications.
- Devnet: Testing with public accessibility for developers experimenting with their applications.
- Testnet: Stress-testing for network upgrades and validator performance.

**Example use cases**: You may want to debug a new program on Devnet or verify performance metrics on Testnet before Mainnet deployment.

| **Cluster** | **Endpoint** | **Purpose** | **Notes** |
|---------------|----------------------------------|---------------------------------------------|-------------------------------------|
| Mainnet | `https://api.mainnet-beta.solana.com` | Live production environment | Requires SOL for transactions |
| Devnet | `https://api.devnet.solana.com` | Public testing and development | Free SOL airdrop for testing |
| Testnet | `https://api.testnet.solana.com` | Validator and stress testing | May have intermittent downtime |


## Devnet

Devnet serves as a playground for anyone who wants to take Solana for a test
Expand Down
Loading