Skip to content
This repository has been archived by the owner on Sep 18, 2020. It is now read-only.

Commit

Permalink
deployment_guide.md: another pass
Browse files Browse the repository at this point in the history
  • Loading branch information
snd committed Feb 20, 2018
1 parent 751d942 commit 7c7ad04
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions deployment_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,43 +19,45 @@ es well as the number of `required_signatures`

## initial deployment steps for any authority (deploying and non-deploying)

given you are an authority and
given you are authority with `authority_address`.

[build and install the bridge](README.md#build)

install parity.
we tested it with [parity 1.8.10](https://github.com/paritytech/parity/releases/tag/v1.8.10)
though it should work with the latest stable release.

### start parity node that connects
### start parity node that connects to `home`

start a parity node `home_node` that connects to `foreign`.
```
parity \
--chain {home chain name or spec}
--ipc-path home.ipc
--no-jsonrpc
--unlock {authority_address}
--password {path to file containing password for authority address}
```

assuming `foreign = kovan`:
### start parity node that connects to `foreign`

```
parity \
--chain {chain name or spec}
--chain {foreign chain name or spec}
--ipc-path foreign.ipc
--no-jsonrpc
--unlock {authority_address}
--password {path to file containing password for authority address}
```

start a parity node that connects to `foreign`.
that has the authority address unlocked.
let's call it `foreign_node`

repeat the same for `home`.

### configure the bridge

copy [integration-tests/bridge_config.toml](integration-tests/bridge_config.toml)
to a local `bridge_config.toml`.

within `bridge_config.toml` resolve/fill-in all the `ACTION REQUIRED`s.

refer to [the documentation of config options](README.md#configuration).
for help refer to the comments, [the config option documentation](README.md#configuration).
or [![Join the chat at https://gitter.im/paritytech/parity-bridge](https://badges.gitter.im/paritytech/parity-bridge.svg)](https://gitter.im/paritytech/parity-bridge?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

[if you're the **leading** authority continue here](#further-deployment-steps-for-leading-authority)

Expand Down

0 comments on commit 7c7ad04

Please sign in to comment.