Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update auction length #438

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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 contracts/core/MarginCalculator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ contract MarginCalculator is Ownable {
uint256 internal constant BASE = 8;

/// @notice auction length
uint256 public constant AUCTION_TIME = 3600;
uint256 public constant AUCTION_TIME = 5400;

/// @dev struct to store all needed vault details
struct VaultDetails {
Expand Down
9 changes: 7 additions & 2 deletions test/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export const expectedLiqudidationPrice = (
const endingPrice = new BigNumber(collateral).dividedBy(debt)
const auctionElapsedTime = currentBlockTime - auctionStartingTime

if (auctionElapsedTime > 3600) {
if (auctionElapsedTime > 5400) {
// return Math.floor(endingPrice)
return endingPrice.multipliedBy(10 ** collateralDecimals).toNumber()
}
Expand All @@ -183,7 +183,12 @@ export const expectedLiqudidationPrice = (
}

const price = startingPrice
.plus(endingPrice.minus(startingPrice).multipliedBy(auctionElapsedTime).dividedBy(3600))
.plus(
endingPrice
.minus(startingPrice)
.multipliedBy(auctionElapsedTime)
.dividedBy(5400),
)
.multipliedBy(10 ** collateralDecimals)

if (price.isGreaterThan(endingPrice.multipliedBy(10 ** collateralDecimals)))
Expand Down