Skip to content

Commit

Permalink
docs: Update documentation for joining a testnet (#318)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathansumner authored Jul 4, 2023
1 parent 0637df7 commit f2a4c6f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions docs/docs/joining-a-testnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ fetchd init <moniker-name> --chain-id <chain id>
Execute the following command to download the latest genesis file:

```bash
curl <rpc url>/genesis | jq '.result.genesis' > ~/.fetchd/config/genesis.json
curl <storage url>/genesis.json --output ~/.fetchd/config/genesis.json
```

Finally connect fetchd to the network by getting it to connect to a seed node for the given network.
Expand All @@ -61,9 +61,7 @@ Less abstractly then, if you wants to connect to the Dorado test net for example
fetchd init my-first-fetch-node --chain-id dorado-1

# genesis
curl https://rpc-dorado.fetch.ai:443 | jq '.result.genesis' > ~/.fetchd/config/genesis.json
# ...or, if that's too large to download from the rpc interface as a single file...
curl https://storage.googleapis.com/fetch-ai-testnet-genesis/genesis-dorado-827201.json --output ~/.fetchd/config/genesis.json
curl https://storage.googleapis.com/fetch-ai-testnet-genesis/genesis-dorado-testing.json --output ~/.fetchd/config/genesis.json

# start
fetchd start --p2p.seeds=eb9b9717975b49a57e62ea93aa4480e091ae0660@connect-dorado.fetch.ai:36556,46d2f86a255ece3daf244e2ca11d5be0f16cb633@connect-dorado.fetch.ai:36557,066fc564979b1f3173615f101b62448ac7e00eb1@connect-dorado.fetch.ai:36558
Expand Down

0 comments on commit f2a4c6f

Please sign in to comment.