Skip to content
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
6 changes: 3 additions & 3 deletions docs/docs/joining-a-testnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ fetchcli config node <rpc url>
In the case of the beacon world network this would be as follows:

```bash
fetchcli config chain-id beaconworld-1
fetchcli config chain-id beaconworld-2
fetchcli config trust-node false
fetchcli config node https://rpc-beaconworld.fetch.ai:443
```
Expand Down Expand Up @@ -81,11 +81,11 @@ Less abstractly then, if a user wants to connect to the beacon world test net fo

```bash
# init
fetchd init my-first-fetch-node --chain-id beaconworld-1
fetchd init my-first-fetch-node --chain-id beaconworld-2

# genesis
curl https://rpc-beaconworld.fetch.ai/genesis? | jq .result.genesis > ~/.fetchd/config/genesis.json

# start
fetchd start --p2p.seeds=e5102b892cf49d20b5e58435abfcf1d9f923e0f3@connect-beaconworld.fetch.ai:36656
fetchd start --p2p.seeds=29478d48b65482f4d627cad034281ebefb6fdc13@connect-beaconworld.fetch.ai:36656
```
4 changes: 2 additions & 2 deletions docs/docs/networks.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ Beacon World network will be used for onboarding community validators nodes in a

| Parameter | Value |
| -------------- | ------------------------------------------------------------------------------ |
| Chain ID | beaconworld-1 |
| Chain ID | beaconworld-2 |
| Denomination | atestfet |
| Decimals | 18 |
| Version | v0.5.x (fetchcli >= v0.5.0) |
| RPC Endpoint | https://rpc-beaconworld.fetch.ai:443 |
| REST Endpoint | https://rest-beaconworld.fetch.ai:443 |
| Block Explorer | [https://explore-beaconworld.fetch.ai/](https://explore-beaconworld.fetch.ai/) |
| Token Faucet | https://faucet-beaconworld.fetch.ai |
| Seed Node(s) | e5102b892cf49d20b5e58435abfcf1d9f923e0f3@connect-beaconworld.fetch.ai:36656 |
| Seed Node(s) | 29478d48b65482f4d627cad034281ebefb6fdc13@connect-beaconworld.fetch.ai:36656 |
2 changes: 1 addition & 1 deletion docs/docs/validators/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ fetchcli tx staking create-validator \
--amount=1000000000000000000000atestfet \
--pubkey=fetchvalconspub1zcjduepqa8ldmfnt6avct9x5h7269jjfmv2l22pnejezz37vh7syajfyku6stlj0s9 \
--moniker="my-test-validator" \
--chain-id=beaconworld-1 \
--chain-id=beaconworld-2 \
--commission-rate="0.10" \
--commission-max-rate="0.20" \
--commission-max-change-rate="0.01" \
Expand Down