From e90062381762460926b7abe1745e2ca9b78f2ec8 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Fri, 20 Mar 2020 09:36:55 -0700 Subject: [PATCH] Update value names in docs (#8983) (#8985) automerge --- docs/src/cli/transfer-tokens.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/src/cli/transfer-tokens.md b/docs/src/cli/transfer-tokens.md index 33a8b8bd2b..580ebb3c1e 100644 --- a/docs/src/cli/transfer-tokens.md +++ b/docs/src/cli/transfer-tokens.md @@ -31,9 +31,9 @@ solana --help where you replace the text `` with the name of the command you want to learn more about. -The command's usage message will typically contain words such as ``, +The command's usage message will typically contain words such as ``, `` or ``. Each word is a placeholder for the *type* of text -you can execute the command with. For example, you can replace `` +you can execute the command with. For example, you can replace `` with a number such as `42` or `100.42`. You can replace `` with the base58 encoding of your public key. For ``, it depends on what type of wallet you chose. If you chose an fs wallet, that path might be @@ -50,16 +50,16 @@ Try and *airdrop* yourself some play tokens on the developer testnet, called Devnet: ```bash -solana airdrop 10 --url http://devnet.solana.com +solana airdrop 10 --url http://devnet.solana.com ``` -where you replace the text `` with your base58 public key. +where you replace the text `` with your base58 public key. Confirm the airdrop was successful by checking the account's balance. It should output `10 SOL`: ```bash -solana balance --url http://devnet.solana.com +solana balance --url http://devnet.solana.com ``` Next, prove that you own those tokens by transferring them. The Solana cluster @@ -83,16 +83,16 @@ pubkey: GKvqsuNcnwWqPzzuhLmGi4rzzh55FhJtGizkhHaEJqiV ``` ```bash -solana transfer --keypair= 5 --url http://devnet.solana.com +solana transfer --keypair= 5 --url http://devnet.solana.com ``` -where you replace `` with the path to a keypair in your wallet, -and replace `` with the output of `solana-keygen new` above. +where you replace `` with the path to a keypair in your wallet, +and replace `` with the output of `solana-keygen new` above. Confirm the updated balances with `solana balance`: ```bash -solana balance --url http://devnet.solana.com +solana balance --url http://devnet.solana.com ``` where `` is either the public key from your keypair or the @@ -106,11 +106,11 @@ tokens to transfer. Once you have that collected, you can transfer tokens with the `solana transfer` command: ```bash -solana transfer --keypair= +solana transfer --keypair= ``` Confirm the updated balances with `solana balance`: ```bash -solana balance +solana balance ```