Skip to content

Commit

Permalink
Decreasing auction duration to 10 sec (#347)
Browse files Browse the repository at this point in the history
  • Loading branch information
codyborn authored Jul 1, 2024
1 parent 85becd1 commit 0404755
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/handlers/hard-quote/handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,8 @@ function getDecayEndTime(chainId: number, startTime: number): number {
switch (chainId) {
case ChainId.MAINNET:
return startTime + 60; // 5 blocks
case ChainId.ARBITRUM_ONE:
return startTime + 10; // 10 seconds
default:
return startTime + 30; // 30 seconds
}
Expand Down

0 comments on commit 0404755

Please sign in to comment.