diff --git a/auction-house/cli/src/commands/upload.ts b/auction-house/cli/src/commands/upload.ts index 5ff8e8cd5d..5d06ed45ef 100644 --- a/auction-house/cli/src/commands/upload.ts +++ b/auction-house/cli/src/commands/upload.ts @@ -691,7 +691,7 @@ export async function upload({ // Compile a sorted list of assets which need to be uploaded. const dedupedAssetKeys = getAssetKeysNeedingUpload(cache.items, files); - // Initialize variables that might be needed for uploded depending on storage + // Initialize variables that might be needed for uploaded depending on storage // type. // These will be needed anyway either to initialize the // Candy Machine Custom Program configuration, or to write the assets diff --git a/auction-house/cli/src/helpers/transactions.ts b/auction-house/cli/src/helpers/transactions.ts index 43920d31b7..89a87a5f3f 100644 --- a/auction-house/cli/src/helpers/transactions.ts +++ b/auction-house/cli/src/helpers/transactions.ts @@ -40,7 +40,7 @@ export const sendTransactionWithRetryWithKeypair = async ( transaction.setSigners(...signers.map(s => s.publicKey)); } else { transaction.setSigners( - // fee payed by the wallet owner + // fee paid by the wallet owner wallet.publicKey, ...signers.map(s => s.publicKey), ); diff --git a/auction-house/cli/src/helpers/upload/arweave-bundle.ts b/auction-house/cli/src/helpers/upload/arweave-bundle.ts index cf293688f9..8a44ba795f 100644 --- a/auction-house/cli/src/helpers/upload/arweave-bundle.ts +++ b/auction-house/cli/src/helpers/upload/arweave-bundle.ts @@ -744,7 +744,7 @@ export const withdrawBundlr = async (walletKeyPair: Keypair) => { } else if (withdrawResponse.status == 400) { log.info(withdrawResponse.data); log.info( - 'Withdraw unsucessful. An additional attempt will be made after all files are uploaded.', + 'Withdraw unsuccessful. An additional attempt will be made after all files are uploaded.', ); } } catch (err) { diff --git a/auction-house/cli/src/helpers/upload/nft-storage.ts b/auction-house/cli/src/helpers/upload/nft-storage.ts index 8f8a0f9800..88c412bbd2 100644 --- a/auction-house/cli/src/helpers/upload/nft-storage.ts +++ b/auction-house/cli/src/helpers/upload/nft-storage.ts @@ -50,7 +50,7 @@ export async function* nftStorageUploadGenerator({ }): AsyncGenerator { // split asset keys into batches, each of which will be bundled into a CAR file and uploaded separately // default to 50 NFTs per "batch" if no batchSize is given. - // larger batches require fewer signatures and will be slightly faster overall if everything is sucessful, + // larger batches require fewer signatures and will be slightly faster overall if everything is successful, // but smaller batches will take less time to retry if there's an error during upload. batchSize = batchSize || 50; batchSize = Math.min(batchSize, NFTBundle.MAX_ENTRIES); diff --git a/fixed-price-sale/cli/src/main.rs b/fixed-price-sale/cli/src/main.rs index b40172b6f0..91b42ad958 100644 --- a/fixed-price-sale/cli/src/main.rs +++ b/fixed-price-sale/cli/src/main.rs @@ -456,7 +456,7 @@ fn main() -> Result<(), error::Error> { } }; - // Send builded transactions + // Send built transactions if let Some(txs_bundle) = txs_data { for (tx, ui_info) in txs_bundle { client.send_and_confirm_transaction(&tx)?; diff --git a/fixed-price-sale/program/src/utils.rs b/fixed-price-sale/program/src/utils.rs index c82d3dbd50..29b4011887 100644 --- a/fixed-price-sale/program/src/utils.rs +++ b/fixed-price-sale/program/src/utils.rs @@ -8,7 +8,7 @@ use anchor_lang::{ use mpl_token_metadata::state::EDITION_MARKER_BIT_SIZE; pub const NAME_MAX_LEN: usize = 40; // max len of a string buffer in bytes -pub const NAME_DEFAULT_SIZE: usize = 4 + NAME_MAX_LEN; // max lenght of serialized string (str_len + ) +pub const NAME_DEFAULT_SIZE: usize = 4 + NAME_MAX_LEN; // max length of serialized string (str_len + ) pub const DESCRIPTION_MAX_LEN: usize = 60; pub const DESCRIPTION_DEFAULT_SIZE: usize = 4 + DESCRIPTION_MAX_LEN; pub const HOLDER_PREFIX: &str = "holder";