Flopper - Detailed Documentation
The Maker Protocol's Debt Auction House
Contract Name: flop.sol
Type/Category: DSS —> System Stabilizer Module
1. Introduction (Summary)
Summary: Debt Auctions are used to recapitalize the system by auctioning off MKR for a fixed amount of DAI. In this process, bidders compete by offering to accept decreasing amounts of MKR for the DAI they will end up paying.

2. Contract Details
Flopper (Glossary)
flop: debt auction (covering debt by inflating MKR and selling for stablecoins)lot: quantity up for auction / gems for sale (MKR)guy: high bidder (address)gal: recipient of auction income / receives dai income (this is the Vow contract)ttl: bid lifetime (Max bid duration / single bid lifetime)beg: minimum bid decreasepad: Increase forlotsize duringtick(default to 50%)tau: maximum auction durationend: when the auction will finish / max auction durationkick: start an auction / Put up a new MKRbidfor auctiondent: make a bid, decreasing the lot size (Submit a fixed DAIbidwith decreasinglotsize)deal: claim a winning bid / settles a completed auctionvat- the Vat's addressgem- MKR Token (address)kicks- Total auction count, used to track auctionidslive- Cage flagwards [usr: address],rely/deny/auth- Auth mechanismsBid- State of a specific Auction {bid,lot,guy,tic,end}bid- Bid amount inDAI / DAI paidtic- Bid expirytick- restarts an auction
Parameters Set By Governance
The Maker Governance voters determine the debt limit. The Debt auction is triggered when the system has DAI debt above that limit.
Maker Governance sets the
Vow.dumpwhich determines the startinglotfor an auction as well as thepadwhich determines how much thatlotcan increase duringtick.The contracts that are
auth'ed to callkick()(should only beVow) andfile()to changebeg,ttl,tau(should only be governance contracts).
Informational Note: The cage sets the Flop to not be live anymore and the yank is used during Global Settlement in order to return a bid to the bidder since the dent and deal can no longer be called.
3. Key Mechanisms & Concepts
The Flop Auction process begins with Maker Governance voters determining the system debt limit (Vow.sump). Debt Auctions are then triggered when the system has Dai debt that has passed that specified debt limit.
In order to determine whether the system has net debt, the surplus, accrued stability fees, and debt must be reconciled. Any user can do this by sending the heal transaction to the system contract named Vow.sol. Provided there is sufficient debt (i.e. debt after healing > Vow.sump), any user can send a Vow.flop transaction to trigger a debt auction.
The Flop is a reverse auction, where keepers bid on how little MKR they are willing to accept for the fixed Dai amount they have to pay at auction settlement. The bidders will basically compete with decreasing lot amounts of MKR for a fixed bid amount of Dai. Once kicked, the bid is set to the flop auction bid size (Vow.sump) and lot is set to a sufficiently large number (Vow.dump). The auction will end when the latest bid duration (ttl) has passed OR when the auction duration (tau) has been reached. The payback process begins when the first bid is placed. The first bid will pay back the system debt and each subsequent bid will pay back the previous (no longer winning) bidder. When the auction is over, the process ends by cleaning up the bid and minting MKR for the winning bidder.
If the auction expires without receiving any bids, anyone can restart the auction by calling tick(uint auction_id). This will do two things:
It resets
bids[id].endtonow + tauIt resets
bids[id].lottobids[id].lot * pad / ONE

Bidding Requirements during an auction
During an auction, lot amounts will decrease by a percentage with each new dent decreasing the lot by the beg for the same bid of Dai. For example, the beg could be set to 5%, meaning if the current bidder has a lot of 10 (MKR) for a bid of 100 (Dai), then the next bid must pass at most a lot of 9.5 (MKR) for a bid of 100 (Dai).
Placing Bids
When a bid is beaten out by another bidder, the new winner's internal DAI balance is used to refund the previous winning bidder. Once placed, bids cannot be canceled.
Example bidding flow:
Vow
kicks a new Flop Auction.Bidder 1 makes a bid that decreases the
lotsize bybegfrom the initial amount. Bidder 1's DAI balance in the Vat is decreased bybidand the Vow's DAI balance in the Vat is increased bybid.Bidder 2 makes a bid that decreases Bidder 1's
lotbybeg. Bidder 2's DAI balance in the Vat is decreased bybidand Bidder 1's DAI balance in the Vat is increased bybid(thereby refunding Bidder 1 for their now-losing bid).Bidder 1 makes a bid that decreases Bidder 2's
lotbybeg. Bidder 1's DAI =Vat.dai[bidder1]-bid; Bidder 2's DAI =Vat.dai[bidder2]+bid.Bidder 2 (and all the other bidders within the auction) decide it is no longer worth it to continue to accept lower
lots, so they stop bidding. Once theBid.ticexpires, Bidder 1 callsdealand new MKR tokens are minted to their address (MKR token contract.balances(Bidder1)=MKR.balances(Bidder1)+lot).
Note: During a Flop auction, the beg is actually the minimum decrease amount. In dent the new bid has to have a lot * beg that is less than or equal to the current lot size. Since the theory of the Flop auction is that a bidder’s offer is to take fewer and fewer MKR tokens (lot) for the same amount of dai (bid) then the beg is the amount each bid's offer should decrease by.
4. Gotchas (Potential Source of User Error)
Keepers
In the context of running a keeper (more info here) to perform bids within an auction, a primary failure mode would occur when a keeper specifies an unprofitable price for MKR.
This failure mode is due to the fact that there is nothing the system can do stop a user from paying significantly more than the fair market value for the token in an auction (this goes for all auction types,
flip,flop, andflap).This means, in the case of Flop, that since the Dai amount is fixed for the entire auction, the risk to the keeper is that they would make a "winning" bid that pays the bid amount in Dai but does not receive any MKR (
lot== 0). Subsequent executions of this bad strategy would be limited by the amount of Dai (not MKR) in their vat balance.
5. Failure Modes (Bounds on Operating Conditions & External Risk Factors)
Flopperhas the potential to issue an excessively huge amount of MKR and despite the mitigation efforts (the addition of thedumpandpadparameters), ifdumpis not set correctly by governance, the huge issuance of MKR could still occur.
Last updated