From a904454e42706abc536ce39e7d737888e801d0b9 Mon Sep 17 00:00:00 2001 From: Zentex Date: Tue, 3 Feb 2026 22:27:29 +0530 Subject: [PATCH] Fix typos in README.md - Change "re recommend" to "we recommend" for Anchor version - Fix airdrop command syntax by adding amount parameter before address - Update airdrop instruction text to be more accurate --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8e411d9..f6ae379 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ SOLANA_RPC_URL=https://your-solana-devnet-rpc-url - [NodeJS 12](https://nodejs.org/en/download/) or higher - [Rust](https://www.rust-lang.org/tools/install) - we recommend rustc version 1.87 and above - [Solana CLI](https://docs.solanalabs.com/cli/install) - we recommend v0.31.1 -- [Anchor](https://book.anchor-lang.com/getting_started/installation.html) - re recommend v2.1.21 and above. +- [Anchor](https://book.anchor-lang.com/getting_started/installation.html) - we recommend v2.1.21 and above. - A C compiler such as the one included in [GCC](https://gcc.gnu.org/install/). ### Building and Deploying the Consumer Program @@ -78,13 +78,13 @@ You should see the public key in the terminal output. Alternatively, you can fin solana-keygen pubkey id.json ``` -Next, airdrop 5 SOL tokens into your new account. Be sure to replace both instances of with your wallet's public key from the previous step: +Next, airdrop SOL tokens into your new account: ``` -solana airdrop $(solana address --keypair id.json) --url https://api.devnet.solana.com +solana airdrop 5 $(solana address --keypair id.json) --url https://api.devnet.solana.com ``` -Confirm that you have received the 5 SOL by running `solana balance --keypair id.json`. +Confirm that you have received the SOL by running `solana balance --keypair id.json`. Next, build the program: