diff --git a/CODEOWNERS b/CODEOWNERS index ab1de9d02..2f253cd22 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -6,4 +6,4 @@ # These owners will be the default owners for everything in # the repo unless a later match takes precedence. -* @mrice32 @nicholaspai @pxrl @james-a-morris +* @mrice32 @nicholaspai @pxrl @james-a-morris @dohaki diff --git a/src/common/Constants.ts b/src/common/Constants.ts index fb554b217..a620ceec5 100644 --- a/src/common/Constants.ts +++ b/src/common/Constants.ts @@ -499,7 +499,7 @@ export const SCROLL_CUSTOM_GATEWAY: { [chainId: number]: { l1: string; l2: strin }, }; -// Expected worst-case time for message from L1 to propogate to L2 in seconds +// Expected worst-case time for message from L1 to propagate to L2 in seconds export const EXPECTED_L1_TO_L2_MESSAGE_TIME = { [CHAIN_IDs.ALEPH_ZERO]: 20 * 60, [CHAIN_IDs.ARBITRUM]: 20 * 60, diff --git a/src/utils/CCTPUtils.ts b/src/utils/CCTPUtils.ts index 38d1c5170..f34f419b8 100644 --- a/src/utils/CCTPUtils.ts +++ b/src/utils/CCTPUtils.ts @@ -97,7 +97,7 @@ export async function retrieveOutstandingCCTPBridgeUSDCTransfers( return undefined; } // Call into the destinationMessageTransmitter contract to determine if the message has been processed - // on the destionation chain. We want to make sure the message **hasn't** been processed. + // on the destination chain. We want to make sure the message **hasn't** been processed. const isMessageProcessed = await hasCCTPMessageBeenProcessed(sourceDomain, nonce, destinationMessageTransmitter); if (isMessageProcessed) { return undefined; diff --git a/src/utils/ProviderUtils.ts b/src/utils/ProviderUtils.ts index 9f6e8e24a..94d8caca3 100644 --- a/src/utils/ProviderUtils.ts +++ b/src/utils/ProviderUtils.ts @@ -127,7 +127,7 @@ export async function getProvider( const rpcRateLimited = ({ nodeMaxConcurrency, logger }) => async (attempt: number, url: string): Promise => { - // Implement a slightly aggressive expontential backoff to account for fierce paralellism. + // Implement a slightly aggressive expontential backoff to account for fierce parallelism. // @todo: Start w/ maxConcurrency low and increase until 429 responses start arriving. const baseDelay = 1000 * Math.pow(2, attempt); // ms; attempt = [0, 1, 2, ...] const delayMs = baseDelay + baseDelay * Math.random(); diff --git a/tasks/integration-tests.ts b/tasks/integration-tests.ts index d09cd1f01..d4410be65 100644 --- a/tasks/integration-tests.ts +++ b/tasks/integration-tests.ts @@ -37,7 +37,7 @@ task("integration-tests", "Run integration tests against key Dataworker function // Override environment variables that we want to control for, for example we want to prevent the runner of this // script from sending any on-chain transactions. - process.env.POLLING_DELAY = "0"; // Set to severless mode so that bot terminates after successful run. + process.env.POLLING_DELAY = "0"; // Set to serverless mode so that bot terminates after successful run. process.env.DISPUTER_ENABLED = "true"; process.env.PROPOSER_ENABLED = "true"; process.env.EXECUTOR_ENABLED = "true";