diff --git a/src/ampli/index.ts b/src/ampli/index.ts index ce7eb5511..7fec57cd9 100644 --- a/src/ampli/index.ts +++ b/src/ampli/index.ts @@ -559,7 +559,7 @@ export interface PageViewedProperties { */ gitCommitHash: string; /** - * Boolean if this is first time identifed user has visited page. Should be Null for anonymous users. + * Boolean if this is first time identified user has visited page. Should be Null for anonymous users. */ isInitialPageView: boolean; origin: string; @@ -874,11 +874,11 @@ export interface TransferDepositCompletedProperties { networkFeeNativeToken: string; networkFeeUsd: string; /** - * Latency for FE to recieve quote in millisec + * Latency for FE to receive quote in millisec */ quoteLatencyMilliseconds: string; /** - * Timestamp the FE recieves quote (may be different from the event timestamp) + * Timestamp the FE receives quote (may be different from the event timestamp) */ quoteTimestamp: string; /** diff --git a/src/utils/bridge.ts b/src/utils/bridge.ts index e8a590df6..548717f55 100644 --- a/src/utils/bridge.ts +++ b/src/utils/bridge.ts @@ -546,7 +546,7 @@ async function _tagRefAndSignTx( // Last test to ensure that the tx is valid and that the signer // is connected to the correct chain. - // NOTE: I think this is a good candiate for using an RPC call + // NOTE: I think this is a good candidate for using an RPC call // to get the chainId of the signer. const signerChainId = await signer.getChainId(); if (signerChainId !== originChainId) { diff --git a/src/utils/weiMath.ts b/src/utils/weiMath.ts index 8f9f2889b..82b35e4ae 100644 --- a/src/utils/weiMath.ts +++ b/src/utils/weiMath.ts @@ -11,7 +11,7 @@ export function toWeiSafe( numberToConvertToWei: string, desiredPrecision = DEFAULT_PRECISION ) { - // Try converting just the raw string first to avoid unneccessary stripping of precision. + // Try converting just the raw string first to avoid unnecessary stripping of precision. try { return toWei(numberToConvertToWei, desiredPrecision); } catch (err) {