This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.0; | |
import "@openzeppelin/contracts/utils/Address.sol"; | |
interface IFlashLoanEtherReceiver { | |
function execute() external payable; | |
} | |
/** | |
* @title SideEntranceLenderPool | |
* @author Damn Vulnerable DeFi (https://damnvulnerabledefi.xyz) | |
*/ | |
contract SideEntranceLenderPool { | |
using Address for address payable; | |
mapping(address => uint256) private balances; | |
function deposit() external payable { | |
balances[msg.sender] += msg.value; | |
} | |
function withdraw() external { | |
uint256 amountToWithdraw = balances[msg.sender]; | |
balances[msg.sender] = 0; | |
payable(msg.sender).sendValue(amountToWithdraw); | |
} | |
function flashLoan(uint256 amount) external { | |
uint256 balanceBefore = address(this).balance; | |
require(balanceBefore >= amount, "Not enough ETH in balance"); | |
IFlashLoanEtherReceiver(msg.sender).execute{value: amount}(); | |
require( | |
address(this).balance >= balanceBefore, | |
"Flash loan hasn't been paid back" | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment