diff --git a/docs/src/running-validator/validator-monitor.md b/docs/src/running-validator/validator-monitor.md index 74b12f485f..5fb56f6234 100644 --- a/docs/src/running-validator/validator-monitor.md +++ b/docs/src/running-validator/validator-monitor.md @@ -25,7 +25,7 @@ The `solana vote-account` command displays the recent voting activity from your validator: ```bash -solana vote-account ~/validator-vote-keypair.json +solana vote-account ~/vote-account-keypair.json ``` ## Get Cluster Info diff --git a/docs/src/running-validator/validator-stake.md b/docs/src/running-validator/validator-stake.md index 1b1acac1a3..a28dab0c6f 100644 --- a/docs/src/running-validator/validator-stake.md +++ b/docs/src/running-validator/validator-stake.md @@ -41,7 +41,7 @@ solana create-stake-account ~/validator-stake-keypair.json 1 and then delegating that stake to your validator: ```bash -solana delegate-stake ~/validator-stake-keypair.json ~/validator-vote-keypair.json +solana delegate-stake ~/validator-stake-keypair.json ~/vote-account-keypair.json ``` > Don’t delegate your remaining SOL, as your validator will use those tokens to vote. @@ -50,7 +50,7 @@ Stakes can be re-delegated to another node at any time with the same command, but only one re-delegation is permitted per epoch: ```bash -solana delegate-stake ~/validator-stake-keypair.json ~/some-other-validator-vote-keypair.json +solana delegate-stake ~/validator-stake-keypair.json ~/some-other-vote-account-keypair.json ``` Assuming the node is voting, now you're up and running and generating validator @@ -81,7 +81,7 @@ so it can take an hour or more for stake to come fully online. To monitor your validator during its warmup period: -* View your vote account:`solana vote-account ~/validator-vote-keypair.json` This displays the current state of all the votes the validator has submitted to the network. +* View your vote account:`solana vote-account ~/vote-account-keypair.json` This displays the current state of all the votes the validator has submitted to the network. * View your stake account, the delegation preference and details of your stake:`solana stake-account ~/validator-stake-keypair.json` * `solana validators` displays the current active stake of all validators, including yours * `solana stake-history ` shows the history of stake warming up and cooling down over recent epochs diff --git a/docs/src/tour-de-sol/participation/steps-to-create-a-validator/delegating-stake.md b/docs/src/tour-de-sol/participation/steps-to-create-a-validator/delegating-stake.md index 7b66bc1a74..4f6bb61c07 100644 --- a/docs/src/tour-de-sol/participation/steps-to-create-a-validator/delegating-stake.md +++ b/docs/src/tour-de-sol/participation/steps-to-create-a-validator/delegating-stake.md @@ -24,7 +24,7 @@ solana create-stake-account ~/validator-stake-keypair.json 1 and then delegating that stake to your validator: ```bash -solana delegate-stake ~/validator-stake-keypair.json ~/validator-vote-keypair.json +solana delegate-stake ~/validator-stake-keypair.json ~/vote-account-keypair.json ``` {% hint style="warning" %} @@ -43,7 +43,7 @@ Stakes need to warm up, and warmup increments are applied at Epoch boundaries, s To monitor your validator during its warmup period: -* View your vote account:`solana vote-account ~/validator-vote-keypair.json` This displays the current state of all the votes the validator has submitted to the network. +* View your vote account:`solana vote-account ~/vote-account-keypair.json` This displays the current state of all the votes the validator has submitted to the network. * View your stake account, the delegation preference and details of your stake:`solana stake-account ~/validator-stake-keypair.json` * `solana validators` displays the current active stake of all validators, including yours * `solana stake-history ` shows the history of stake warming up and cooling down over recent epochs diff --git a/docs/src/tour-de-sol/participation/steps-to-create-a-validator/install-the-solana-software.md b/docs/src/tour-de-sol/participation/steps-to-create-a-validator/install-the-solana-software.md index 55bc4475db..161cbe74ca 100644 --- a/docs/src/tour-de-sol/participation/steps-to-create-a-validator/install-the-solana-software.md +++ b/docs/src/tour-de-sol/participation/steps-to-create-a-validator/install-the-solana-software.md @@ -12,10 +12,10 @@ Note the version number ## Install Software -Install the Solana release [v0.23.7](https://github.com/solana-labs/solana/releases/tag/v0.23.7) on your machine by running: +Install the Solana release [LATEST_SOLANA_RELEASE_VERSION](https://github.com/solana-labs/solana/releases/tag/LATEST_SOLANA_RELEASE_VERSION) on your machine by running: ```bash -curl -sSf https://raw.githubusercontent.com/solana-labs/solana/v0.22.2/install/solana-install-init.sh | sh -s - 0.23.7 +curl -sSf https://raw.githubusercontent.com/solana-labs/solana/v1.0.0/install/solana-install-init.sh | sh -s - LATEST_SOLANA_RELEASE_VERSION ``` then run `solana --version` to confirm the expected version number.