Skip to content

Commit 4238620

Browse files
authored
Merge pull request 0xPolygon#2683 from 0xPolygon/0xsajal-patch-2
Update validator-packages.md
2 parents c63338b + 26eb98e commit 4238620

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docs/pos/how-to/validator/validator-packages.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This guide covers running a validator node through packages.
1010

1111
* Two machines — one sentry and one validator.
1212
* Bash installed on both the sentry and the validator machines.
13-
* RabbitMQ installed on both the sentry and the validator machines.
13+
* RabbitMQ installed on the validator machine.
1414
See [Downloading and Installing RabbitMQ](https://www.rabbitmq.com/download.html).
1515

1616
## Overview
@@ -37,15 +37,15 @@ To spin up a functioning validator node, follow these steps in the *specified se
3737
Install the default latest version of sentry and validator for the PoS mainnet/Amoy testnet:
3838

3939
```shell
40-
curl -L https://raw.githubusercontent.com/maticnetwork/install/main/heimdall.sh | bash -s -- <version> <network> <node_type>
40+
curl -L https://raw.githubusercontent.com/maticnetwork/install/heimdall-v2/heimdall-v2.sh | bash -s -- <version> <network> <node_type>
4141
```
4242

4343
or install a specific version, node type (`sentry` or `validator`), and network (`mainnet` or `amoy`). All release versions can be found on
44-
[Heimdall GitHub repository](https://github.com/maticnetwork/heimdall/releases).
44+
[Heimdall GitHub repository](https://github.com/0xPolygon/heimdall-v2/releases).
4545

4646
```shell
4747
# Example:
48-
curl -L https://raw.githubusercontent.com/maticnetwork/install/main/heimdall.sh | bash -s -- v1.2.0 mainnet sentry
48+
curl -L https://raw.githubusercontent.com/maticnetwork/install/heimdall-v2/heimdall-v2.sh | bash -s -- v0.2.15 mainnet sentry
4949
```
5050

5151
### Bor
@@ -71,7 +71,7 @@ curl -L https://raw.githubusercontent.com/maticnetwork/install/main/bor.sh | bas
7171
Check Heimdall installation using the following command:
7272

7373
```shell
74-
heimdalld version --long
74+
heimdalld version
7575
```
7676

7777
Check Bor installation using the following command:
@@ -267,7 +267,7 @@ Example: `persistent_peers = "sentry_machineNodeID@sentry_instance_ip:26656"`
267267

268268
Save the changes in `config.toml`.
269269

270-
Open the `heimdall-config.toml` file for editing by running: `vi /var/lib/heimdall/config/heimdall-config.toml`.
270+
Open the `app.toml` file for editing by running: `vi /var/lib/heimdall/config/app.toml`.
271271

272272
In config file, update the following parameters:
273273

@@ -276,7 +276,7 @@ In config file, update the following parameters:
276276

277277
Example: `eth_rpc_url = "https://nd-123-456-789.p2pify.com/60f2a23810ba11c827d3da642802412a"`
278278

279-
Finally, save the changes in `heimdall-config.toml`.
279+
Finally, save the changes in `app.toml`.
280280

281281
### Configuring Bor
282282

@@ -322,7 +322,7 @@ private key on the sentry machine.
322322
To generate the private key, run:
323323

324324
```sh
325-
heimdallcli generate-validatorkey ETHEREUM_PRIVATE_KEY
325+
heimdallcli generate-validator-key ETHEREUM_PRIVATE_KEY
326326
```
327327

328328
where `ETHEREUM_PRIVATE_KEY` is your Ethereum wallet's private key.

0 commit comments

Comments
 (0)