Skip to content
This repository has been archived by the owner on May 24, 2022. It is now read-only.

docs: fix chain preset links #22

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
30 changes: 15 additions & 15 deletions Chain-specification.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@ By default, when simply running `openethereum`, OpenEthereum will connect to the
In order to run a chain different to the official public Ethereum one, OpenEthereum has to run with the `--chain` option or with a [config file](Configuring-OpenEthereum#config-file) specifying `chain = "path"` under `[parity]`. There are a few named presets that can be selected from or a custom JSON spec file can be supplied.

## Chain presets available
- [`foundation`](https://github.com/openethereum/openethereum/blob/master/ethcore/res/ethereum/foundation.json) (default) main Ethereum network (eth,ethereum,mainnet)
- [`goerli`](https://github.com/openethereum/openethereum/blob/master/ethcore/res/ethereum/goerli.json) and [`rinkeby`](https://github.com/openethereum/openethereum/blob/master/ethcore/res/ethereum/rinkeby.json) the fast Ethereum test networks using Clique consensus engine.
- [`kovan`](https://github.com/openethereum/openethereum/blob/master/ethcore/res/ethereum/kovan.json) the [fast Ethereum test network](https://github.com/kovan-testnet/config) using PoA consensus engine.
- [`ropsten`](https://github.com/openethereum/openethereum/blob/master/ethcore/res/ethereum/ropsten.json) the old Ethereum test network
- [`poanet`](https://github.com/openethereum/openethereum/tree/master/ethcore/res/ethereum/poanet.json) Poanet network
- [`xdai`](https://github.com/openethereum/openethereum/blob/master/ethcore/res/ethereum/xdai.json) xDai network
- [`volta`](https://github.com/openethereum/openethereum/blob/master/ethcore/res/ethereum/volta.json) Volta network
- [`ewc`](https://github.com/openethereum/openethereum/blob/master/ethcore/res/ethereum/ewc.json) ewc network
- [`mix`](https://github.com/openethereum/openethereum/blob/master/ethcore/res/ethereum/mix.json) Mix network
- [`callisto`](https://github.com/openethereum/openethereum/blob/master/ethcore/res/ethereum/callisto.json) Callisto network
- [`morden`](https://github.com/openethereum/openethereum/blob/master/ethcore/res/ethereum/morden.json) Morden network
- [`sokol`](https://github.com/openethereum/openethereum/blob/master/ethcore/res/ethereum/classic.json) Sokol network
- [`dev`](https://github.com/openethereum/openethereum/blob/master/ethcore/res/instant_seal.json) a [Private development chain](Private-development-chain) to be used locally, submitted transactions are inserted into blocks instantly without the need to mine
- [`musicoin`](https://github.com/openethereum/openethereum/blob/master/ethcore/res/ethereum/musicoin.json) Musicoin network
- [`ellaism`](https://github.com/openethereum/openethereum/blob/master/ethcore/res/ethereum/ellaism.json) Ellaism network
- [`foundation`](https://github.com/openethereum/openethereum/blob/main/crates/ethcore/res/chainspec/foundation.json) (default) main Ethereum network (eth,ethereum,mainnet)
- [`goerli`](https://github.com/openethereum/openethereum/blob/main/crates/ethcore/res/chainspec/goerli.json) and [`rinkeby`](https://github.com/openethereum/openethereum/blob/master/ethcore/res/ethereum/rinkeby.json) the fast Ethereum test networks using Clique consensus engine.
- [`kovan`](https://github.com/openethereum/openethereum/blob/main/crates/ethcore/res/chainspec/kovan.json) the [fast Ethereum test network](https://github.com/kovan-testnet/config) using PoA consensus engine.
- [`ropsten`](https://github.com/openethereum/openethereum/blob/main/crates/ethcore/res/chainspec/ropsten.json) the old Ethereum test network
- [`poacore`](https://github.com/openethereum/openethereum/blob/main/crates/ethcore/res/chainspec/poacore.json) POA Core network
- [`xdai`](https://github.com/openethereum/openethereum/blob/main/crates/ethcore/res/chainspec/xdai.json) xDai network
- [`volta`](https://github.com/openethereum/openethereum/blob/main/crates/ethcore/res/chainspec/volta.json) Volta network
- [`ewc`](https://github.com/openethereum/openethereum/blob/main/crates/ethcore/res/chainspec/ewc.json) ewc network
- [`mix`](https://github.com/openethereum/openethereum/blob/main/crates/ethcore/res/chainspec/mix.json) Mix network
- [`callisto`](https://github.com/openethereum/openethereum/blob/main/crates/ethcore/res/chainspec/callisto.json) Callisto network
- [`morden`](https://github.com/openethereum/openethereum/blob/main/crates/ethcore/res/chainspec/morden.json) Morden network
- [`poasokol`](https://github.com/openethereum/openethereum/blob/main/crates/ethcore/res/chainspec/poasokol.json) POA Sokol network
- [`dev`](https://github.com/openethereum/openethereum/blob/main/crates/ethcore/res/chainspec/instant_seal.json) a [Private development chain](Private-development-chain) to be used locally, submitted transactions are inserted into blocks instantly without the need to mine
- [`musicoin`](https://github.com/openethereum/openethereum/blob/main/crates/ethcore/res/chainspec/musicoin.json) Musicoin network
- [`ellaism`](https://github.com/openethereum/openethereum/blob/main/crates/ethcore/res/chainspec/ellaism.json) Ellaism network

## Private chains

Expand Down