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
6 changes: 3 additions & 3 deletions src/ampli/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
/**
Expand Down
2 changes: 1 addition & 1 deletion src/utils/bridge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion src/utils/weiMath.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down