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

[Polkadot Wiki Migration] Development Networks #18

Merged
merged 10 commits into from
Oct 3, 2024
dawnkelly09 marked this conversation as resolved.
Show resolved Hide resolved
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions polkadot-protocol/introduction/.pages
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ title: Introduction to Polkadot
nav:
- index.md
- parachains
- polkadot-networks.md
67 changes: 67 additions & 0 deletions polkadot-protocol/introduction/polkadot-networks.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
---
title: Development Networks
description: This section contains the list of networks and resources available for developers in the Polkadot ecosystem for testing purposes.
hide:
- feedback
template: subsection-index-page.html
---

# Polkadot Development Networks

The development and testing networks and resources presented here are intended for Polkadot core developers, Parachain developers,
application developers as well as the end users.
dawnkelly09 marked this conversation as resolved.
Show resolved Hide resolved

![Polkadot Development infographic](/images/polkadot-protocol/introduction/development-networks.png)
DrW3RK marked this conversation as resolved.
Show resolved Hide resolved
DrW3RK marked this conversation as resolved.
Show resolved Hide resolved

Polkadot Core Developers typically test upgrades on a local development node. Then they are deployed and tested on [Westend](#westend).
dawnkelly09 marked this conversation as resolved.
Show resolved Hide resolved
After rigorous testing on Westend, the upgrades make their way to Kusama and eventually on to Polkadot.

Parachain developers use local testnets powered by tools like [Zombienet](#zombienet) and then deploy the upgrades on their respective
parachains on either [Rococo](#rococo) or [Paseo](#paseo) networks.

Application developers and end users of Polkadot ecosystem can test many features without risking or spending their tokens on production
DrW3RK marked this conversation as resolved.
Show resolved Hide resolved
networks networks by using tools like [Chopsticks](#chopsticks).
DrW3RK marked this conversation as resolved.
Show resolved Hide resolved

## Kusama Network

Kusama is the experimental development network for teams who want to innovate, move fast and test their applications on a
production grade environment with economics and game theory involved. It comprises of a relaychain with its own governance, system chains
DrW3RK marked this conversation as resolved.
Show resolved Hide resolved
DrW3RK marked this conversation as resolved.
Show resolved Hide resolved
and parachains.

Native Token: KSM
DrW3RK marked this conversation as resolved.
Show resolved Hide resolved
DrW3RK marked this conversation as resolved.
Show resolved Hide resolved

## Test Networks

The tokens for the test networks listed below are available through [faucet.polkadot.io](https://faucet.polkadot.io/){target=\_blank}
DrW3RK marked this conversation as resolved.
Show resolved Hide resolved

### Westend

A perma-testnet (that is not reset back to genesis block) intended for Polkadot core developers and maintained by Parity Technologies.
dawnkelly09 marked this conversation as resolved.
Show resolved Hide resolved
Primarily used to test features that are to be deployed onto Kusama and then to Polkadot.

Native Token: WND
DrW3RK marked this conversation as resolved.
Show resolved Hide resolved

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📝 [vale] reported by reviewdog 🐶
[Papermoon.Acronyms] Spell out 'WND', if it's unfamiliar to the audience.


### Paseo

A community-run testnet which mirrors the Polkadot runtime that is intended for parachain developers. It is maintained by the members of

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [vale] reported by reviewdog 🐶
[Vale.Terms] Use 'TestNet' instead of 'testnet'.

Polkadot community.

Native Token: PAS
DrW3RK marked this conversation as resolved.
Show resolved Hide resolved
DrW3RK marked this conversation as resolved.
Show resolved Hide resolved

### Rococo

Soon to be deprecated testnet intended for parachain developers. It is maintained by Parity Technologies.
dawnkelly09 marked this conversation as resolved.
Show resolved Hide resolved

Native Token: ROC
DrW3RK marked this conversation as resolved.
Show resolved Hide resolved
DrW3RK marked this conversation as resolved.
Show resolved Hide resolved

## Local Test Networks
dawnkelly09 marked this conversation as resolved.
Show resolved Hide resolved

### Zombienet

[Zombienet](https://github.com/paritytech/zombienet){target=\_blank} is a testing framework for Polkadot SDK based blockchains, providing
a simple cli tool that allows users to spawn and test ephemeral networks.
DrW3RK marked this conversation as resolved.
Show resolved Hide resolved
DrW3RK marked this conversation as resolved.
Show resolved Hide resolved

### Chopsticks

[Acala Chopsticks](https://github.com/AcalaNetwork/chopsticks){target=\_blank} lets you create a fork of any Polkadot SDK based blockchain
and interact with it. This tool can also be used for testing cross chain applications.
Loading