diff --git a/docs/src/SUMMARY.md b/docs/src/SUMMARY.md index 0c1e32a73b..1a26052d8b 100644 --- a/docs/src/SUMMARY.md +++ b/docs/src/SUMMARY.md @@ -1,8 +1,8 @@ # Table of contents * [Introduction](introduction.md) -* [Install Solana](install-solana.md) -* [Use Solana from the Command-line](cli/README.md) +* [Install the Solana Tool Suite](install-solana.md) +* [Send and Receive Tokens](cli/README.md) * [Command-line Usage](cli/usage.md) * [Remote Wallet](remote-wallet/README.md) * [Ledger Hardware Wallet](remote-wallet/ledger.md) diff --git a/docs/src/cli/README.md b/docs/src/cli/README.md index f5ffb32cc7..53dc861280 100644 --- a/docs/src/cli/README.md +++ b/docs/src/cli/README.md @@ -1,5 +1,9 @@ -# Using Solana from the Command-line +# Send and Receive Tokens -This section describes the command-line tools for interacting with Solana. One -could use these tools to send payments, stake validators, and check account -balances. +In this section, we'll describe how to create a Solana *wallet*, how to send +and receive tokens, and how to participate in the cluster by delegating stake. +To interact with a Solana cluster, we will use its command-line interface, also +known as the CLI. We use the command-line because it's the first place the +Solana core team deploys new functionality. The command-line interface isn't +necessarily the easiest to use, but it provides the most direct, flexible, and +secure access to your Solana accounts. diff --git a/docs/src/install-solana.md b/docs/src/install-solana.md index fb94ae2d86..6cbb5bd11f 100644 --- a/docs/src/install-solana.md +++ b/docs/src/install-solana.md @@ -1,4 +1,4 @@ -# Installing Solana +# Install the Solana Tool Suite Install the Solana release [v1.1.0](https://github.com/solana-labs/solana/releases/tag/v1.1.0) on your diff --git a/docs/src/terminology.md b/docs/src/terminology.md index 8cc32de160..656046da2f 100644 --- a/docs/src/terminology.md +++ b/docs/src/terminology.md @@ -304,6 +304,10 @@ See [ledger vote](terminology.md#ledger-vote). A reward tally for validators. A vote credit is awarded to a validator in its vote account when the validator reaches a [root](terminology.md#root). +## wallet + +A collection of [keypairs](terminology.md#keypair). + ## warmup period Some number of epochs after stake has been delegated while it progressively becomes effective. During this period, the stake is considered to be "activating". More info about: [warmup and cooldown](cluster/stake-delegation-and-rewards.md#stake-warmup-cooldown-withdrawal)