Skip to content

Commit 0ffb10d

Browse files
authored
Update validator-binaries.md
Heimdall v2 references updated
1 parent 279c448 commit 0ffb10d

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This guide will walk you through running a Polygon validator node using binaries
2121
sudo apt-get install build-essential
2222
```
2323

24-
* Go 1.19 installed on both the sentry and the validator machines.
24+
* Go 1.24+ installed on both the sentry and the validator machines.
2525

2626
To install:
2727

@@ -31,7 +31,7 @@ This guide will walk you through running a Polygon validator node using binaries
3131
sudo ln -nfs ~/.go/bin/go /usr/bin/go
3232
```
3333

34-
* RabbitMQ installed on both the sentry and the validator machines.
34+
* RabbitMQ installed on the validator machine.
3535

3636
Here are the commands to install RabbitMQ:
3737

@@ -70,21 +70,21 @@ Both binaries must be installed and run in the correct order to function properl
7070

7171
Install the latest version of Heimdall and related services. Make sure you checkout to the correct [release version](https://github.com/maticnetwork/heimdall/releases).
7272

73-
To install Heimdall, run the following commands:
73+
To install Heimdall, run the following command:
7474

7575
```bash
76-
curl -L https://raw.githubusercontent.com/maticnetwork/install/main/heimdall.sh | bash -s -- <heimdall_version> <network_type> <node_type>
76+
curl -L https://raw.githubusercontent.com/maticnetwork/install/heimdall-v2/heimdall-v2.sh | bash -s -- v0.2.12 <network> <node_type>
7777
```
7878
You can run the above command with following options:
7979

80-
- `heimdall_version`: valid v1.0+ release tag from https://github.com/maticnetwork/heimdall/releases
80+
- `heimdall_version`: valid v0.2+ release tag from https://github.com/0xPolygon/heimdall-v2/releases
8181
- `network_type`: `mainnet` and `amoy`
8282
- `node_type`: `sentry`
8383

84-
That will install the `heimdalld` and `heimdallcli` binaries. Verify the installation by checking the Heimdall version on your machine using the following command:
84+
That will install the `heimdalld` binary. Verify the installation by checking the Heimdall version on your machine using the following command:
8585

8686
```bash
87-
heimdalld version --long
87+
heimdalld version
8888
```
8989

9090
!!! note
@@ -290,16 +290,16 @@ Example: `persistent_peers = "sentry_machineNodeID@sentry_instance_ip:26656"`
290290

291291
Save the changes in `config.toml`.
292292

293-
Open for editing `vi /var/lib/heimdall/config/heimdall-config.toml`.
293+
Open for editing `vi /var/lib/heimdall/config/app.toml`.
294294

295-
In `heimdall-config.toml`, update the following:
295+
In `app.toml`, update the following:
296296

297297
* `eth_rpc_url` — an RPC endpoint for a fully synced Ethereum mainnet node,
298298
e.g., Infura. `eth_rpc_url =<insert Infura or any full node RPC URL to Ethereum>`
299299

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

302-
Save the changes in `heimdall-config.toml`.
302+
Save the changes in `app.toml`.
303303

304304
### Configuring the Bor service
305305

@@ -333,7 +333,7 @@ private key on the sentry machine.
333333
To generate the private key, run:
334334

335335
```sh
336-
heimdallcli generate-validatorkey ETHEREUM_PRIVATE_KEY
336+
heimdalld generate-validatorkey ETHEREUM_PRIVATE_KEY
337337
```
338338

339339
where `ETHEREUM_PRIVATE_KEY` is your Ethereum wallet’s private key.
@@ -351,7 +351,7 @@ You must generate a Bor keystore file only on the validator machine. Do not gene
351351
To generate the private key, run:
352352

353353
```sh
354-
heimdallcli generate-keystore ETHEREUM_PRIVATE_KEY
354+
heimdalld generate-keystore ETHEREUM_PRIVATE_KEY
355355
```
356356

357357
where `ETHEREUM_PRIVATE_KEY` is your Ethereum wallet’s private key.

0 commit comments

Comments
 (0)