@ -25,7 +25,7 @@ The `solana vote-account` command displays the recent voting activity from
|
|||||||
your validator:
|
your validator:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
solana vote-account ~/validator-vote-keypair.json
|
solana vote-account ~/vote-account-keypair.json
|
||||||
```
|
```
|
||||||
|
|
||||||
## Get Cluster Info
|
## Get Cluster Info
|
||||||
|
@ -41,7 +41,7 @@ solana create-stake-account ~/validator-stake-keypair.json 1
|
|||||||
and then delegating that stake to your validator:
|
and then delegating that stake to your validator:
|
||||||
|
|
||||||
```bash
|
```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.
|
> 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:
|
but only one re-delegation is permitted per epoch:
|
||||||
|
|
||||||
```bash
|
```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
|
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:
|
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`
|
* 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 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
|
* `solana stake-history ` shows the history of stake warming up and cooling down over recent epochs
|
||||||
|
@ -24,7 +24,7 @@ solana create-stake-account ~/validator-stake-keypair.json 1
|
|||||||
and then delegating that stake to your validator:
|
and then delegating that stake to your validator:
|
||||||
|
|
||||||
```bash
|
```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" %}
|
{% 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:
|
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`
|
* 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 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
|
* `solana stake-history ` shows the history of stake warming up and cooling down over recent epochs
|
||||||
|
@ -12,10 +12,10 @@ Note the version number
|
|||||||
|
|
||||||
## Install Software
|
## 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
|
```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.
|
then run `solana --version` to confirm the expected version number.
|
||||||
|
Reference in New Issue
Block a user