Skip to content

Commit

Permalink
improve: Widen bridge estimate default time to 1,5 instead of 1,4 (#395)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholaspai authored Oct 27, 2022
1 parent 6093a2f commit 6312d3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/bridge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export const getConfirmationDepositTime = (
};

if (amount.lte(limits.maxDepositInstant)) {
return getTimeEstimateString(1, 4);
return getTimeEstimateString(1, 5);
} else if (amount.lte(limits.maxDepositShortDelay)) {
// This is just a rough estimate of how long 2 bot runs (1-4 minutes allocated for each) + an arbitrum transfer of 3-10 minutes would take.
if (toChain === ChainId.ARBITRUM) return getTimeEstimateString(5, 15);
Expand Down

2 comments on commit 6312d3e

@vercel
Copy link

@vercel vercel bot commented on 6312d3e Oct 27, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 6312d3e Oct 27, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

goerli-frontend-v2 – ./

goerli-frontend-v2.vercel.app
goerli-frontend-v2-git-master-uma.vercel.app
goerli-frontend-v2-uma.vercel.app

Please sign in to comment.