浏览代码

fix: corrected typos and grammatical errors in the text (#294)

NikolaiKryshnev 10 月之前
父节点
当前提交
ff449c946e

+ 1 - 1
src/pages/guides/javascript/how-to-create-a-solana-token.md

@@ -416,7 +416,7 @@ const createAndMintTokens = async () => {
   });
 
   // The last step is to send the ix's off in a transaction to the chain.
-  // Ix's here can be ommited and added as needed during the transaction chain.
+  // Ix's here can be omitted and added as needed during the transaction chain.
   // If for example you just want to create the Token without minting
   // any tokens then you may only want to submit the `createToken` ix.
 

+ 2 - 2
src/pages/guides/javascript/how-to-create-an-nft-on-solana.md

@@ -29,7 +29,7 @@ Token Metadata is the Solana NFT standard that started it all. Created back in 2
 #### Why Use Token Metadata:
 
 - Tried and Trusted: Token Metadata has been used as Solana's primary NFT Token Standard for the last 4 years from projects such as Solana Monkey Business, DeGods, Claynosaurus just to name a few.
-- Eco System Support: NFTs and pNFTs are supported Solana wide by marketplaces and wallets such as MagicEden, Tensor, Phantom, Solflare and many others.
+- Ecosystem Support: NFTs and pNFTs are supported Solana wide by marketplaces and wallets such as MagicEden, Tensor, Phantom, Solflare and many others.
 - SPL Token Based: Token Metadata NFTs/pNFTs are based around Solana's SPL Token program.
 
 [Create An NFT/pNFT with Token Metadata](/token-metadata/guides/javascript/create-an-nft)
@@ -41,6 +41,6 @@ When it comes to creating NFTs that are cheap in mass then Bubblegum is the prot
 #### Why Use Bubblegum:
 
 - Cheap to deploy: Being a Merkle tree based product trees are cheap to deploy that can store millions of NFTs if needed.
-- Mass Airdrops: Once a tree is created the cost of airdrop cNFTs is close to non existent as the storage of the tree has already been paid for.
+- Mass Airdrops: Once a tree is created the cost of airdrop cNFTs is close to non-existent as the storage of the tree has already been paid for.
 
 [Create 1,000,000 NFTs on Solana with Bubblegum](/bubblegum/guides/javascript/how-to-create-1000000-nfts-on-solana)

+ 1 - 1
src/pages/guides/javascript/how-to-transfer-sol-on-solana.md

@@ -100,7 +100,7 @@ await umi.rpc.airdrop(umi.identity.publickey)
 const umi = createUmi('https://api.devnet.solana.com')
   .use(mplToolbox())
 
-// You will need to us fs and navigate the filesystem to
+// You will need to use fs and navigate the filesystem to
 // load the wallet you wish to use via relative pathing.
 const walletFile = const imageFile = fs.readFileSync('./keypair.json')
 

+ 2 - 2
src/pages/guides/javascript/how-to-transfer-spl-tokens-on-solana.md

@@ -1,7 +1,7 @@
 ---
 title: How to Send and Transfer SPL Tokens on Solana
 metaTitle: How to Send and Transfer SPL Tokens on Solana| Guides
-description: Learn how to send and transfer SPL Tokens via javascript on the Solana blockchain wih Metaplex packages.
+description: Learn how to send and transfer SPL Tokens via javascript on the Solana blockchain with Metaplex packages.
 # remember to update dates also in /components/guides/index.js
 created: '06-16-2024'
 updated: '06-24-2024'
@@ -9,7 +9,7 @@ updated: '06-24-2024'
 
 This guide will show you how to build out a Javascript function to send and transfer SPL tokens on the Solana blockchain utilizing the Metaplex Umi client wrapper and MPL Toolbox packages.
 
-For this guide you will need to have some SPL Tokens in your wallet to transfer so if you not have any in your wallet you will need to get someone to transfer some to you or you can follow our other [how to create an SPL Token guide](/guides/javascript/how-to-create-an-spl-token-on-solana).
+For this guide you will need to have some SPL Tokens in your wallet to transfer so if you do not have any in your wallet you will need to get someone to transfer some to you or you can follow our other [how to create an SPL Token guide](/guides/javascript/how-to-create-an-spl-token-on-solana).
 
 ## Prerequisite
 

+ 1 - 1
src/pages/guides/rust/working-with-rust.md

@@ -38,7 +38,7 @@ let rpc_client = rpc_client::RpcClient::new("https://api.devnet.solana.com".to_s
 
 Each instruction that comes from a Metaplex Rust crate will also currently come with a `Builder` version of that instruction which you can import. This abstracts a massive amount code for you and will return you an instruction that's ready to send.
 
-Lets take the `CreateV1` instruction from Core as an example (this applies to all other instructions from this Crate and all other Metaplex crates too).
+Let's take the `CreateV1` instruction from Core as an example (this applies to all other instructions from this Crate and all other Metaplex crates too).
 
 If we look through the instructions in the [Mpl Core crate type docs](https://docs.rs/mpl-core/0.7.0/mpl_core/instructions/index.html) we can see we have a number of instructions available to us.