diff --git a/apps/portal/src/app/references/components/TDoc/utils/getAllTSReferencesLinkMap.ts b/apps/portal/src/app/references/components/TDoc/utils/getAllTSReferencesLinkMap.ts index 31681bb2367..1f492dc860e 100644 --- a/apps/portal/src/app/references/components/TDoc/utils/getAllTSReferencesLinkMap.ts +++ b/apps/portal/src/app/references/components/TDoc/utils/getAllTSReferencesLinkMap.ts @@ -4,7 +4,7 @@ import { fetchTypeScriptDoc } from "../fetchDocs/fetchTypeScriptDoc"; const validReferenceLinks: Set = new Set(); /** - * Get the map of all valid reference links for typescript pacakges + * Get the map of all valid reference links for typescript packages */ export async function getAllTSReferencesLinks() { if (validReferenceLinks.size > 0) { diff --git a/packages/thirdweb/src/wallets/smart/lib/signing.ts b/packages/thirdweb/src/wallets/smart/lib/signing.ts index 592d3625b6f..2f2b8af4e33 100644 --- a/packages/thirdweb/src/wallets/smart/lib/signing.ts +++ b/packages/thirdweb/src/wallets/smart/lib/signing.ts @@ -181,7 +181,7 @@ export async function confirmContractDeployment(args: { } /** - * Deployes a smart account via a dummy transaction. If the account is already deployed, this will do nothing. + * Deploys a smart account via a dummy transaction. If the account is already deployed, this will do nothing. * * @param args - Arguments for the deployment. * @param args.smartAccount - The smart account to deploy. diff --git a/packages/thirdweb/src/wallets/smart/lib/userop.ts b/packages/thirdweb/src/wallets/smart/lib/userop.ts index a0c3dbc6a87..3fe57036802 100644 --- a/packages/thirdweb/src/wallets/smart/lib/userop.ts +++ b/packages/thirdweb/src/wallets/smart/lib/userop.ts @@ -250,7 +250,7 @@ async function getGasFees(args: { maxFeePerGas = bundlerGasPrice.maxFeePerGas; maxPriorityFeePerGas = bundlerGasPrice.maxPriorityFeePerGas; } else { - // Check for explicity values + // Check for explicitly values const [resolvedMaxFeePerGas, resolvedMaxPriorityFeePerGas] = await Promise.all([ resolvePromisedValue(maxFeePerGas),