mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
160 lines
5.9 KiB
Solidity
160 lines
5.9 KiB
Solidity
pragma solidity ^0.7.0;
|
|
|
|
import { TokenInterface } from "../../../common/interfaces.sol";
|
|
import { Stores } from "../../../common/stores.sol";
|
|
import { Helpers } from "./helpers.sol";
|
|
import { Events } from "./events.sol";
|
|
import { AaveInterface, AaveCoreInterface, ATokenInterface } from "./interface.sol";
|
|
|
|
abstract contract AaveResolver is Events, Helpers {
|
|
/**
|
|
* @dev Deposit ETH/ERC20_Token.
|
|
* @param token token address to deposit.(For ETH: 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE)
|
|
* @param amt token amount to deposit.
|
|
* @param getId Get token amount at this ID from `InstaMemory` Contract.
|
|
* @param setId Set token amount at this ID in `InstaMemory` Contract.
|
|
*/
|
|
function deposit(
|
|
address token,
|
|
uint amt,
|
|
uint getId,
|
|
uint setId
|
|
) external payable returns (string memory _eventName, bytes memory _eventParam) {
|
|
uint _amt = getUint(getId, amt);
|
|
AaveInterface aave = AaveInterface(aaveProvider.getLendingPool());
|
|
|
|
uint ethAmt;
|
|
if (token == ethAddr) {
|
|
_amt = _amt == uint(-1) ? address(this).balance : _amt;
|
|
ethAmt = _amt;
|
|
} else {
|
|
TokenInterface tokenContract = TokenInterface(token);
|
|
_amt = _amt == uint(-1) ? tokenContract.balanceOf(address(this)) : _amt;
|
|
tokenContract.approve(aaveProvider.getLendingPoolCore(), _amt);
|
|
}
|
|
|
|
aave.deposit{value: ethAmt}(token, _amt, referralCode);
|
|
|
|
if (!getIsColl(aave, token)) aave.setUserUseReserveAsCollateral(token, true);
|
|
|
|
setUint(setId, _amt);
|
|
|
|
_eventName = "LogDeposit(address,uint256,uint256,uint256)";
|
|
_eventParam = abi.encode(token, _amt, getId, setId);
|
|
}
|
|
|
|
/**
|
|
* @dev Withdraw ETH/ERC20_Token.
|
|
* @param token token address to withdraw.(For ETH: 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE)
|
|
* @param amt token amount to withdraw.
|
|
* @param getId Get token amount at this ID from `InstaMemory` Contract.
|
|
* @param setId Set token amount at this ID in `InstaMemory` Contract.
|
|
*/
|
|
function withdraw(
|
|
address token,
|
|
uint amt,
|
|
uint getId,
|
|
uint setId
|
|
) external payable returns (string memory _eventName, bytes memory _eventParam) {
|
|
uint _amt = getUint(getId, amt);
|
|
AaveCoreInterface aaveCore = AaveCoreInterface(aaveProvider.getLendingPoolCore());
|
|
ATokenInterface atoken = ATokenInterface(aaveCore.getReserveATokenAddress(token));
|
|
TokenInterface tokenContract = TokenInterface(token);
|
|
|
|
uint initialBal = token == ethAddr ? address(this).balance : tokenContract.balanceOf(address(this));
|
|
atoken.redeem(_amt);
|
|
uint finalBal = token == ethAddr ? address(this).balance : tokenContract.balanceOf(address(this));
|
|
|
|
_amt = sub(finalBal, initialBal);
|
|
setUint(setId, _amt);
|
|
|
|
_eventName = "LogWithdraw(address,uint256,uint256,uint256)";
|
|
_eventParam = abi.encode(token, _amt, getId, setId);
|
|
}
|
|
|
|
/**
|
|
* @dev Borrow ETH/ERC20_Token.
|
|
* @param token token address to borrow.(For ETH: 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE)
|
|
* @param amt token amount to borrow.
|
|
* @param getId Get token amount at this ID from `InstaMemory` Contract.
|
|
* @param setId Set token amount at this ID in `InstaMemory` Contract.
|
|
*/
|
|
function borrow(
|
|
address token,
|
|
uint amt,
|
|
uint getId,
|
|
uint setId
|
|
) external payable returns (string memory _eventName, bytes memory _eventParam) {
|
|
uint _amt = getUint(getId, amt);
|
|
AaveInterface aave = AaveInterface(aaveProvider.getLendingPool());
|
|
aave.borrow(token, _amt, 2, referralCode);
|
|
setUint(setId, _amt);
|
|
|
|
_eventName = "LogBorrow(address,uint256,uint256,uint256)";
|
|
_eventParam = abi.encode(token, _amt, getId, setId);
|
|
}
|
|
|
|
/**
|
|
* @dev Payback borrowed ETH/ERC20_Token.
|
|
* @param token token address to payback.(For ETH: 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE)
|
|
* @param amt token amount to payback.
|
|
* @param getId Get token amount at this ID from `InstaMemory` Contract.
|
|
* @param setId Set token amount at this ID in `InstaMemory` Contract.
|
|
*/
|
|
function payback(
|
|
address token,
|
|
uint amt,
|
|
uint getId,
|
|
uint setId
|
|
) external payable returns (string memory _eventName, bytes memory _eventParam) {
|
|
uint _amt = getUint(getId, amt);
|
|
AaveInterface aave = AaveInterface(aaveProvider.getLendingPool());
|
|
|
|
if (_amt == uint(-1)) {
|
|
uint fee;
|
|
(_amt, fee) = getPaybackBalance(aave, token);
|
|
_amt = add(_amt, fee);
|
|
}
|
|
uint ethAmt;
|
|
if (token == ethAddr) {
|
|
ethAmt = _amt;
|
|
} else {
|
|
TokenInterface(token).approve(aaveProvider.getLendingPoolCore(), _amt);
|
|
}
|
|
|
|
aave.repay{value: ethAmt}(token, _amt, payable(address(this)));
|
|
|
|
setUint(setId, _amt);
|
|
|
|
_eventName = "LogPayback(address,uint256,uint256,uint256)";
|
|
_eventParam = abi.encode(token, _amt, getId, setId);
|
|
}
|
|
|
|
/**
|
|
* @dev Enable collateral
|
|
* @param tokens Array of tokens to enable collateral
|
|
*/
|
|
function enableCollateral(
|
|
address[] calldata tokens
|
|
) external payable returns (string memory _eventName, bytes memory _eventParam) {
|
|
uint _length = tokens.length;
|
|
require(_length > 0, "0-tokens-not-allowed");
|
|
|
|
AaveInterface aave = AaveInterface(aaveProvider.getLendingPool());
|
|
|
|
for (uint i = 0; i < _length; i++) {
|
|
address token = tokens[i];
|
|
if (getCollateralBalance(aave, token) > 0 && !getIsColl(aave, token)) {
|
|
aave.setUserUseReserveAsCollateral(token, true);
|
|
}
|
|
}
|
|
|
|
_eventName = "LogEnableCollateral(address[]);";
|
|
_eventParam = abi.encode(tokens);
|
|
}
|
|
}
|
|
|
|
contract ConnectAave is AaveResolver {
|
|
string public name = "Aave-v1.1";
|
|
}
|