aave-protocol-v2/contracts/mocks/flashloan/MockFlashLoanReceiver.sol

85 lines
2.6 KiB
Solidity
Raw Normal View History

// SPDX-License-Identifier: agpl-3.0
pragma solidity ^0.6.8;
2020-10-15 13:25:27 +00:00
import {SafeMath} from '../../dependencies/openzeppelin/contracts/SafeMath.sol';
import {IERC20} from '../../dependencies/openzeppelin/contracts/IERC20.sol';
2020-08-20 10:44:51 +00:00
import {FlashLoanReceiverBase} from '../../flashloan/base/FlashLoanReceiverBase.sol';
import {MintableERC20} from '../tokens/MintableERC20.sol';
2020-10-15 13:25:27 +00:00
import {SafeERC20} from '../../dependencies/openzeppelin/contracts/SafeERC20.sol';
2020-08-20 10:44:51 +00:00
import {ILendingPoolAddressesProvider} from '../../interfaces/ILendingPoolAddressesProvider.sol';
contract MockFlashLoanReceiver is FlashLoanReceiverBase {
2020-08-12 17:36:58 +00:00
using SafeERC20 for IERC20;
2020-07-13 08:54:08 +00:00
ILendingPoolAddressesProvider internal _provider;
2020-10-22 18:37:50 +00:00
event ExecutedWithFail(address[] _assets, uint256[] _amounts, uint256[] _premiums);
event ExecutedWithSuccess(address[] _assets, uint256[] _amounts, uint256[] _premiums);
2020-07-13 08:54:08 +00:00
2020-08-25 12:50:07 +00:00
bool _failExecution;
uint256 _amountToApprove;
bool _simulateEOA;
2020-07-13 08:54:08 +00:00
constructor(ILendingPoolAddressesProvider provider) public FlashLoanReceiverBase(provider) {}
2020-07-13 08:54:08 +00:00
2020-08-25 12:50:07 +00:00
function setFailExecutionTransfer(bool fail) public {
_failExecution = fail;
}
function setAmountToApprove(uint256 amountToApprove) public {
_amountToApprove = amountToApprove;
}
function setSimulateEOA(bool flag) public {
_simulateEOA = flag;
}
2020-08-25 12:50:07 +00:00
function amountToApprove() public view returns (uint256) {
return _amountToApprove;
2020-07-13 08:54:08 +00:00
}
2020-10-12 13:19:27 +00:00
function simulateEOA() public view returns (bool) {
return _simulateEOA;
}
2020-07-13 08:54:08 +00:00
function executeOperation(
2020-10-22 18:37:50 +00:00
address[] memory assets,
uint256[] memory amounts,
uint256[] memory premiums,
bytes memory params
2020-10-12 13:19:27 +00:00
) public override returns (bool) {
params;
2020-07-13 08:54:08 +00:00
2020-08-25 12:50:07 +00:00
if (_failExecution) {
2020-10-22 18:37:50 +00:00
emit ExecutedWithFail(assets, amounts, premiums);
return !_simulateEOA;
}
2020-10-22 18:37:50 +00:00
for (uint256 i = 0; i < assets.length; i++) {
//mint to this contract the specific amount
MintableERC20 token = MintableERC20(assets[i]);
//check the contract has the specified balance
require(
amounts[i] <= IERC20(assets[i]).balanceOf(address(this)),
'Invalid balance for the contract'
);
2020-10-22 18:37:50 +00:00
uint256 amountToReturn = (_amountToApprove != 0)
? _amountToApprove
: amounts[i].add(premiums[i]);
//execution does not fail - mint tokens and return them to the _destination
//note: if the reserve is eth, the mock contract must receive at least _fee ETH before calling executeOperation
2020-07-13 13:19:47 +00:00
2020-10-22 18:37:50 +00:00
token.mint(premiums[i]);
IERC20(assets[i]).approve(_addressesProvider.getLendingPool(), amountToReturn);
}
2020-07-13 13:19:47 +00:00
2020-10-22 18:37:50 +00:00
emit ExecutedWithSuccess(assets, amounts, premiums);
return true;
2020-07-13 08:54:08 +00:00
}
2020-06-02 14:16:22 +00:00
}