Auction Module
Relevant smart contracts:
1. Overview
The Auction Module is meant to incentivize external actors to drive the system back to a safe state by participating in collateral, debt and surplus auctions.
2. Component Descriptions
- The
CollateralAuctionHouse
is used to sell collateral from SAFEs that have become under-collateralized in order to preserve the overall health of the system. There are two flavours of collateral auctions:English
andFixedDiscount
.-
The
English
auction version requires that bidders compete with increasing amounts of system coins for a fixed amount of collateral and only one bidder can win. This auction type has two phases:increaseBidSize
where bidders submit higher system coin bids anddecreaseSoldAmount
where bidders accept a lower collateral amount for the winning system coin bid. -
On the other hand, the
FixedDiscount
andIncreasingDiscount
auctions only have one phase (buyCollateral
) where bidders submit system coins and the smart contract offers them collateral at a discounted price compared to its market price. These auction types are more capital efficient and user friendly compared toEnglish
auctions. They also allow anyone to buy collateral using flashloans.By default, the contract will use the collateral's
OSM
price (which will lag compared to the actual collateral market price) and the system coin'sredemptionPrice
in order to calculate the amount of collateral to offer in exchange for each individual bid. There is the possibility for governance to set the contract's parameters so that it uses the collateral's medianizer price and/or the system coin's market price if they deviated within certain limits from theFSM
price and theredemptionPrice
.
-
- The
DebtAuctionHouse
is used to get rid of theAccountingEngine
’s debt by auctioning off protocol tokens for a fixed amount of surplus (system coins). After the auction is settled, it sends the received surplus to theAccountingEngine
in order to cancel out bad debt and it also mints protocol tokens for the winning bidder. - The
SurplusAuctionHouse
(all of itsBurning
,Recycling
andPostSettlement
versions) is used to get rid of theAccountingEngine
’s surplus by auctioning off a fixed amount of internal system coins in exchange for protocol tokens. After auction settlement, the auction house either burns the winning protocol token bid or it transfers the bid to an external address and then sends internal system coins to the winning bidder.
3. Risks
Governance needs to fine-tune auction parameters in order to make the bidding process as efficient as possible. In the case of English
, Debt
and Surplus
auctions there are three main parameters:
bidIncrease
- if it's too high it will discourage bidding and if it's too low its effect will be insignificantbidDuration
- if it's too high it would force the winning bidder to wait too long until they can collect their winnings. If it's too low it would not give other bidders enough time to participatetotalAuctionLength
- if it's too high it would only delay auction settlement without any positive impact on the outcome. If it's too low it would make the auction settle before the true price is found.bidToMarketPriceRatio
(only inEnglish
collateral auctions) - minimum mandatory size of the first bid compared to collateral price coming from theOSM
In the case of FixedDiscount
collateral auctions there's a wider range of variables:
totalAuctionLength
- same parameter as in the other auction typesdiscount
- discount applied to the collateral priceminimumBid
- minimum system coin bid that must be submitted by any bidderupperCollateralMedianDeviation
- maximum upper side medianizer price deviation (compared to theOSM
price) used by the auction contract to determine whether it will use the median or theOSM
as a feed sourcelowerCollateralMedianDeviation
- maximum lower side medianizer price deviation (compared to theOSM
price) used by the auction contract to determine whether it will use the median or theOSM
as a feed sourcelowerSystemCoinMedianDeviation
- maximum lower side system coin market price (compared to the redemption price) used by the auction contract to determine whether it will use the market or the redemption price when determining the amount of collateral boughtupperSystemCoinMedianDeviation
- maximum upper side system coin market price (compared to the redemption price) used by the auction contract to determine whether it will use the market or the redemption price when determining the amount of collateral boughtminSystemCoinMedianDeviation
- minimum deviation between the market and the redemption prices of the system coin in order for the contract to choose the market price (and not the redemption one) when it determines the amount of collateral bought
In the case of IncreasingDiscount
collateral auctions, the parameter range is almost identical to the one in FixedDiscount
auctions, with some additions:
minDiscount
- minimum discount (compared to the system coin's current redemption price) at which collateral is being soldmaxDiscount
- maximum discount (compared to the system coin's current redemption price) at which collateral is being soldperSecondDiscountUpdateRate
- rate at which the discount will be updated in an auctionmaxDiscountUpdateRateTimeline
- max time over which the discount can be updated in an auction
4. Governance Minimization
All of the auction contracts are in the Level 1 Gov Minimization category.