The past year has seen several high value exploits against DeFi platforms. The beginning of 2020 started with two back-to-back exploits against the bZx platform, losing a total of $1m. Though this is small compared to subsequent hacks, it was the first time flash loans were used in a malicious manner. The remainder of the year saw many more, such as Harvest Finance and Pickle Finance losing $34m and $20m respectively.
A significant portion of these involved the use of flash loans to manipulate multiple DeFi platforms for instant profit. But first, let’s define what a flash loan is and how they work.
Note: This is a 3-part article series on flash loans. The first part will go over the basics of flash loans, and the second part will dig into the details of a previous flash loan exploit along with additional pieces to the DeFi ecosystem. The series will conclude with a proposal on an initial framework to quantify a platform's susceptibility to flash loan attacks.
To understand flash loans, let’s first look at how an Ethereum transaction works. To give an example, a trader making a trade on Uniswap (a decentralised exchange, DEX) from USDC to ETH tokens will be a single transaction. The reverse trade of ETH back to USDC will be another transaction. In both cases, the trader has constructed a simple Ethereum transaction which consists of only one action: swapTokens(). The two actions live inside their own transactions, and so occurred at different times. (Actions here refer to functions in Ethereum smart contracts, and function names have been renamed for simplicity.)
A more sophisticated trader might first swap USDC to ETH on Uniswap, followed by ETH back to USDC on SushiSwap (another DEX) immediately. This is a simple case of arbitrage (the act of buying and selling the same assets at different locations to take advantage of pricing discrepancies). Note the difference, where the two actions are bundled together: both actions live inside a single Ethereum transaction.
Now suppose the trader did not have any capital to make the trades. In come flash loans, or loans that are only valid for one Ethereum transaction.
Using the second example of switching USDC to ETH and back to USDC, the two actions can be wrapped with flash loan actions. The trader’s custom code can be sandwiched with a takeLoan() and a repayLoan() action, where their code would have the following order:
If the borrower does not repay the debt taken before the end of the Ethereum transaction, the Ethereum transaction will revert (throw an error). All of the steps carried out will effectively be undone, as if it never happened (no loan taken, no swaps made).
Because of this atomic nature (an all-or-nothing situation) in code execution, it guarantees that either:
This means lenders can offer these loans with no collateral requirement. The size of the loan depends on capital availability in the publicly funded platforms that offer flash loan services.
The closest comparison to the physical world would be payday loans. Both require no collateral and are only available for a short time. However, these are still very different. Payday loans typically require you to show paycheques and also consist of credit history checks, both of which assure the lender of repayment. The size of the loan is also limited, as the lender cannot overexpose to zero-collateral loans.
To the uninitiated, flash loans could seem like they have very little use. However, the existence of several other money legos in DeFi make it a valuable tool in ensuring the ecosystem behaves in an efficient manner.
The example given previously of our trader swapping USDC to ETH and back to USDC is an example of simple arbitrage. DeFi consists of several decentralised exchanges (DEX), with no built-in mechanism to ensure prices for assets are the same across different exchanges. It relies on rational external traders to take advantage of pricing discrepancies for personal profit, i.e. buy from a cheap place and sell at an expensive place. This will realign prices across exchanges.
Doing arbitrage would normally require some capital (USDC to purchase ETH in this case), but flash loans eliminate this requirement and democratises who can take part in arbitrage: anyone can borrow a large sum of money, take advantage of pricing discrepancies, repay the borrowed amount, and keep any profits - all in a single ethereum transaction.
DeFi also consists of loans structured more similar to traditional loans. A user can provide collateral in the form of well-established crypto assets to take out loans in dollar-denominated stablecoins. As an example, a user providing a single Ethereum worth $2,000 is able to take out up to $1,600 in USDC on Aave.
A borrower would typically do this to increase their leverage. They could trade other coins while also being exposed to a price rise in ETH without having to sell it. Note how the loan is over-collateralised; on Aave, a borrower can only take out 80% of their collateral value. There is a $400 safety net to ensure that even in volatile markets, Aave would be able to recover their principal of $1,600.
Suppose the borrower is convinced that ETH will drop in the near future. If ETH dropped to $1,939 (the point where the loan is worth 82.5% of the collateral), the borrower’s position would be closed, resulting in a loss (how the position is closed is explained as part of the liquidation use case below). To prevent this, the borrower can make use of flash loans to collateral swap.
After the borrower has taken out their collateralised loan above, they could take out a flash loan to:
The net result is a simple swap of the underlying collateral from ETH to the new token.
The advantage of doing this is it automates several steps in a single transaction, making it quicker to execute and slightly cheaper in gas fees. The borrower will also have likely used the initially borrowed USDC for other activities, so would not have to unwind those positions either.
Debt refinancing is similar to the previous use case. A borrower of a collateralised loan may see that another platform is offering cheaper interest rates. A flash loan is used to pay off the more expensive loan, and take out a same-sized loan on the cheaper platform. The advantages are the same as those described for collateral swaps.
As mentioned previously, lending platforms such as Aave rely on third-party liquidators to close positions that fall below the minimum threshold for collateral value requirement. The process is as follows:
This is a simplified version where in practice only half the position is liquidated, but the logic is the same.
This first part in this series introduced flash loans and why they are useful. Part two will cover other pieces of DeFi and consist of greater technical depth. These elements are important in understanding how one of the high-profile flash loan attacks occurred. Understanding previous exploits will allow us to propose an adequate framework to safeguard against such attacks, which is a step closer to driving mainstream adoption of DeFi.