Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
add minimal mention of Statemint in the readme (#656)
Browse files Browse the repository at this point in the history
* add minimal mention of Statemint in the readme

* use unicode coin
  • Loading branch information
apopiak authored Oct 15, 2021
1 parent 42107ab commit 1ea5856
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,30 @@ and treat as best.
A Polkadot [collator](https://wiki.polkadot.network/docs/en/learn-collator) for the parachain is
implemented by [`cumulus-collator`](collator).

# Statemint 🪙

This repository also contains the Statemint runtime (as well as the canary runtime Statemine and the
test runtime Westmint).
Statemint is a common good parachain providing an asset store for the Polkadot ecosystem.

## Build & Launch a Node

To run a Statemine or Westmint node (Statemint is not deployed, yet) you will need to compile the
`polkadot-collator` binary:

```sh
cargo build --release --locked -p polkadot-collator
```

Once the executable is built, launch the parachain node via:

```sh
CHAIN=westmint # or statemine
./target/release/polkadot-collator --chain $CHAIN
```

Refer to the [setup instructions below](#local-setup) to run a local network for development.

# Rococo :crown:

[Rococo](https://polkadot.js.org/apps/?rpc=wss://rococo-rpc.polkadot.io) is the testnet for
Expand Down Expand Up @@ -86,7 +110,9 @@ The network uses horizontal message passing (HRMP) to enable communication betwe
the relay chain and, in turn, between parachains. This means that every message is sent to the relay
chain, and from the relay chain to its destination parachain.

## Launch a local setup including a Relay Chain and a Parachain
## Local Setup

Launch a local setup including a Relay Chain and a Parachain.

### Launch the Relay Chain

Expand Down

0 comments on commit 1ea5856

Please sign in to comment.