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

Add instructions for adding Charlie Docker address to /etc/hosts #953

Merged
merged 1 commit into from
Jul 21, 2024
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ This repository provides a [Docker Compose](https://docs.docker.com/compose/) co
```
1. If you need to communicate directly with the threshold signature scheme server from your Docker host machine, you may also need to include its address in your local `/etc/hosts` file:
```sh
echo "127.0.0.1 alice-tss-server bob-tss-server" | sudo tee -a /etc/hosts
echo "127.0.0.1 alice-tss-server bob-tss-server charlie-tss-server" | sudo tee -a /etc/hosts
```
1. Confirm your local development network is up and running. You can:
* look at server logs:
Expand All @@ -40,7 +40,7 @@ This repository provides a [Docker Compose](https://docs.docker.com/compose/) co
```
* [use the Entropy Test CLI](https://docs.entropy.xyz/reference/rust-testing-interface) to interact with the locally running network:
```sh
cargo run -p entropy-test-cli -- --chain-endpoint="ws://127.0.0.1:9944" status
cargo run -p entropy-test-cli -- --chain-endpoint="ws://127.0.0.1:9944" status
```

### Building from source
Expand Down
5 changes: 3 additions & 2 deletions crates/test-cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ When using the local docker compose setup, be aware you need to set the TSS host
```
127.0.0.1 alice-tss-server
127.0.0.1 bob-tss-server
127.0.0.1 charlie-tss-server
```

You'll also need the following packages:
Expand All @@ -39,9 +40,9 @@ You'll also need the following packages:

```shell
# MacOS
brew install openssl
brew install openssl
```

2. `pkg-config`:

```shell
Expand Down