Skip to content
Open
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
2 changes: 1 addition & 1 deletion packages/devtools/src/common/promise.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export const tapError = async <T>(task: Task<T>, 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<T>[]} tasks
* @returns {Promise<T>}
Expand Down
2 changes: 1 addition & 1 deletion packages/devtools/src/flows/config.load.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export type ConfigLoadFlow<TOmniGraph = OmniGraph> = (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
Expand Down
2 changes: 1 addition & 1 deletion packages/devtools/src/flows/sign.and.send.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down