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 app/mint-teth/components/Mint.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ export function Mint() {

if (!txHash) {
setDepositStatus(StepStatus.FAILED);
throw new Error("Failed to determine trasaction hash for the deposit");
throw new Error("Failed to determine transaction hash for the deposit");
}

setDepositTxHash(txHash);
Expand Down
2 changes: 1 addition & 1 deletion app/mint-teth/hooks/useTokenTransfer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export function useTokenTransfer() {
process.env.NEXT_PUBLIC_ECLIPSE_RPC || "",
);

// Define paramaters
// Define parameters
const destination = "ethereum";
const recipient = evmWallet.address;
const originToken = warpCore.tokens[1];
Expand Down
2 changes: 1 addition & 1 deletion app/mint-tusd/components/Mint.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ export function Mint() {

if (!txHash) {
setDepositStatus(StepStatus.FAILED);
throw new Error("Failed to determine trasaction hash for the deposit");
throw new Error("Failed to determine transaction hash for the deposit");
}

setDepositTxHash(txHash);
Expand Down
2 changes: 1 addition & 1 deletion app/mint-tusd/hooks/useTokenTransfer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export function useTokenTransfer() {
process.env.NEXT_PUBLIC_ECLIPSE_RPC || "",
);

// Define paramaters
// Define parameters
const destination = "ethereum";
const recipient = evmWallet.address;
const originToken = warpCore.tokens[0];
Expand Down