diff --git a/packages/devtools/src/common/promise.ts b/packages/devtools/src/common/promise.ts index e6f482740..7d791f90f 100644 --- a/packages/devtools/src/common/promise.ts +++ b/packages/devtools/src/common/promise.ts @@ -115,7 +115,7 @@ export const tapError = async (task: Task, onError: Factory<[error: unknow * Will resolve with the output of the first task that resolves * or reject with the last rejection. * - * Will reject immediatelly if no tasks have been passed + * Will reject immediately if no tasks have been passed * * @param {Task[]} tasks * @returns {Promise} diff --git a/packages/devtools/src/flows/config.load.ts b/packages/devtools/src/flows/config.load.ts index b2dfb536f..198e33c13 100644 --- a/packages/devtools/src/flows/config.load.ts +++ b/packages/devtools/src/flows/config.load.ts @@ -20,7 +20,7 @@ export type ConfigLoadFlow = (args: ConfigLoadFlowArgs) * The schema is responsible for any transformations that need to be done to turn the raw config into an `OmniGraph` * (e.g. transforming from hardhat-specific format). * - * The config file can be in one of the supoorted formats: + * The config file can be in one of the supported formats: * * - JS * - TS diff --git a/packages/devtools/src/flows/sign.and.send.ts b/packages/devtools/src/flows/sign.and.send.ts index 32c435bb6..13f4b6fea 100644 --- a/packages/devtools/src/flows/sign.and.send.ts +++ b/packages/devtools/src/flows/sign.and.send.ts @@ -70,7 +70,7 @@ export const createSignAndSendFlow = // The last step is to execute those transactions // - // For now we are only allowing sign & send using the accounts confgiured in hardhat config + // For now we are only allowing sign & send using the accounts configured in hardhat config const signAndSend = createSignAndSend(createSigner) // We'll use these variables to store the state of signing