Skip to content
Open
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
16 changes: 15 additions & 1 deletion docs/validator/validator-manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,20 @@ If you don't have an account (wallet) on Lava yet, Refer to [creating new accoun

Once your account is funded, run this to stake and start validating.

0. Set the temporary variable `$current_lavad_binary` for the following operation.

With Option A - With Cosmovisor

```bash
current_lavad_binary=$HOME/.lava/cosmovisor/current/bin/lavad
```

With Option B - Without Cosmovisor

```bash
current_lavad_binary=lavad
```

1. Verify that your node has finished synching and it is caught up with the network

```bash
Expand Down Expand Up @@ -84,4 +98,4 @@ $current_lavad_binary q staking validators | grep $validator_pubkey
sleep $block_time
$current_lavad_binary status | jq .ValidatorInfo.VotingPower | tr -d '"'
# Output should be > 0
```
```