2021-04-02 15:28:00 +00:00
|
|
|
pragma solidity ^0.7.0;
|
|
|
|
pragma experimental ABIEncoderV2;
|
|
|
|
|
|
|
|
import { TokenInterface, AccountInterface } from "../../common/interfaces.sol";
|
2021-04-08 00:10:38 +00:00
|
|
|
import { AaveInterface, ATokenInterface, AaveDataRaw } from "./interfaces.sol";
|
2021-04-02 15:28:00 +00:00
|
|
|
import { Helpers } from "./helpers.sol";
|
|
|
|
import { Events } from "./events.sol";
|
|
|
|
|
|
|
|
contract AaveMigrateResolver is Helpers, Events {
|
|
|
|
|
|
|
|
function migrate(
|
2021-04-08 00:10:38 +00:00
|
|
|
AaveDataRaw calldata _data,
|
|
|
|
uint ethAmt // if ethAmt is > 0 then use migrateWithflash
|
2021-04-02 15:28:00 +00:00
|
|
|
) external payable returns (string memory _eventName, bytes memory _eventParam) {
|
2021-04-04 08:06:20 +00:00
|
|
|
require(_data.supplyTokens.length > 0, "0-length-not-allowed");
|
|
|
|
require(_data.supplyTokens.length == _data.supplyAmts.length, "invalid-length");
|
|
|
|
require(_data.targetDsa != address(0), "invalid-address");
|
2021-04-02 15:28:00 +00:00
|
|
|
|
2021-04-08 00:10:38 +00:00
|
|
|
AaveDataRaw memory data;
|
2021-04-04 08:06:20 +00:00
|
|
|
|
|
|
|
data.borrowTokens = _data.borrowTokens;
|
|
|
|
data.stableBorrowAmts = _data.stableBorrowAmts;
|
|
|
|
data.supplyAmts = _data.supplyAmts;
|
|
|
|
data.supplyTokens = _data.supplyTokens;
|
|
|
|
data.targetDsa = _data.targetDsa;
|
|
|
|
data.variableBorrowAmts = _data.variableBorrowAmts;
|
|
|
|
|
|
|
|
for (uint i = 0; i < data.supplyTokens.length; i++) {
|
|
|
|
address _token = data.supplyTokens[i] == ethAddr ? wethAddr : data.supplyTokens[i];
|
|
|
|
data.supplyTokens[i] = _token;
|
2021-04-02 15:28:00 +00:00
|
|
|
(address _aToken, ,) = aaveData.getReserveTokensAddresses(_token);
|
|
|
|
ATokenInterface _aTokenContract = ATokenInterface(_aToken);
|
2021-04-04 08:06:20 +00:00
|
|
|
|
|
|
|
if (data.supplyAmts[i] == uint(-1)) {
|
|
|
|
data.supplyAmts[i] = _aTokenContract.balanceOf(address(this));
|
|
|
|
}
|
|
|
|
|
|
|
|
_aTokenContract.approve(address(migrator), data.supplyAmts[i]);
|
2021-04-02 15:28:00 +00:00
|
|
|
}
|
|
|
|
|
2021-04-08 00:10:38 +00:00
|
|
|
if (ethAmt > 0) {
|
|
|
|
migrator.migrateWithFlash(data, ethAmt);
|
|
|
|
} else {
|
|
|
|
migrator.migrate(data);
|
|
|
|
}
|
2021-04-02 15:28:00 +00:00
|
|
|
|
|
|
|
_eventName = "LogAaveV2Migrate(address,address,address[],address[])";
|
2021-04-04 08:06:20 +00:00
|
|
|
_eventParam = abi.encode(msg.sender, data.targetDsa, data.supplyTokens, data.borrowTokens);
|
2021-04-02 15:28:00 +00:00
|
|
|
}
|
2021-04-08 00:10:38 +00:00
|
|
|
|
2021-04-02 15:28:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
contract AaveV2Migrator is AaveMigrateResolver {
|
|
|
|
string constant public name = "AaveV2PolygonMigrator-v1";
|
|
|
|
}
|