Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { fetchTypeScriptDoc } from "../fetchDocs/fetchTypeScriptDoc";
const validReferenceLinks: Set<string> = 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) {
Expand Down
2 changes: 1 addition & 1 deletion packages/thirdweb/src/wallets/smart/lib/signing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion packages/thirdweb/src/wallets/smart/lib/userop.ts
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ async function getGasFees(args: {
maxFeePerGas = bundlerGasPrice.maxFeePerGas;
maxPriorityFeePerGas = bundlerGasPrice.maxPriorityFeePerGas;
} else {
// Check for explicity values
// Check for explicitly values
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

While fixing the typo from "explicity" to "explicitly", a grammatical error was introduced. The phrase "explicitly values" incorrectly uses an adverb to modify a noun. The correct form should be "explicit values" (adjective + noun) to properly describe the nature of the values being checked.

Suggested change
// Check for explicitly values
// Check for explicit values

Spotted by Diamond

Is this helpful? React 👍 or 👎 to let us know.

const [resolvedMaxFeePerGas, resolvedMaxPriorityFeePerGas] =
await Promise.all([
resolvePromisedValue(maxFeePerGas),
Expand Down