Skip to content
This repository was archived by the owner on Mar 25, 2025. It is now read-only.

Commit 78b7942

Browse files
committed
fix party server ip addrs
1 parent 85024dc commit 78b7942

1 file changed

Lines changed: 10 additions & 5 deletions

File tree

docs/getting-started/remote.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Below instructions assume that the servers will be installed on:
2828
- `.env.coord`
2929
```
3030
PORT=8005
31-
PARTY_HOSTS=["192.168.0.100", "192.168.0.101", "192.168.0.102"]
31+
PARTY_HOSTS=["192.168.0.101", "192.168.0.102", "192.168.0.103"]
3232
PARTY_PORTS=[8006, 8007, 8008]
3333
PARTY_API_KEY=81f47c24b9fbe22421ea3ae92a9cc8f6
3434
PARTY_WEB_PROTOCOL=http
@@ -41,7 +41,7 @@ Below instructions assume that the servers will be installed on:
4141
```
4242
COORDINATION_SERVER_URL=http://192.168.0.100:8005
4343
CERTS_PATH=certs
44-
PARTY_HOSTS=["192.168.0.100", "192.168.0.101", "192.168.0.102"]
44+
PARTY_HOSTS=["192.168.0.101", "192.168.0.102", "192.168.0.103"]
4545
PARTY_PORTS=["8006","8007","8008"]
4646
PARTY_WEB_PROTOCOL=http
4747
PORT=8004
@@ -78,7 +78,7 @@ For each party server, perform the following steps:
7878
```
7979
COORDINATION_SERVER_URL=http://192.168.0.100:8005
8080
PARTY_API_KEY=81f47c24b9fbe22421ea3ae92a9cc8f6
81-
PARTY_HOSTS=["192.168.0.100", "192.168.0.101", "192.168.0.102"]
81+
PARTY_HOSTS=["192.168.0.101", "192.168.0.102", "192.168.0.103"]
8282
PARTY_PORTS=[8006, 8007, 8008]
8383
PARTY_WEB_PROTOCOL=http
8484
MAX_DATA_PROVIDERS=1000
@@ -116,16 +116,21 @@ For each party server, perform the following steps:
116116
cd mpc-demo-infra
117117
```
118118

119-
4. Set up Client:
119+
4. Set up Client and Notary Server:
120120
```bash
121121
./setup_env.sh --client --notary
122122
```
123123

124+
5. Start Notary Server
125+
```bash
126+
./tlsn/notary/target/release/notary-server
127+
```
128+
124129
4. Modify the configuration file at the repository root:
125130
- `.env.client_cli`
126131
```
127132
COORDINATION_SERVER_URL=http://192.168.0.100:8005
128-
PARTY_HOSTS=["192.168.0.100", "192.168.0.101", "192.168.0.102"]
133+
PARTY_HOSTS=["192.168.0.101", "192.168.0.102", "192.168.0.103"]
129134
PARTY_PORTS=["8006","8007","8008"]
130135
PARTY_WEB_PROTOCOL=http
131136
NOTARY_SERVER_HOST=127.0.0.1

0 commit comments

Comments
 (0)