mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
160 lines
4.2 KiB
Solidity
160 lines
4.2 KiB
Solidity
//SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.7.0;
|
|
pragma experimental ABIEncoderV2;
|
|
import { TokenInterface, AccountInterface } from "../../common/interfaces.sol";
|
|
import { Basic } from "../../common/basic.sol";
|
|
import "./interface.sol";
|
|
|
|
contract EulerHelpers is Basic {
|
|
|
|
IEulerMarkets internal constant markets =
|
|
IEulerMarkets(0x3520d5a913427E6F0D6A83E07ccD4A4da316e4d3);
|
|
|
|
IEulerExecute internal constant eulerExec = IEulerExecute(0x59828FdF7ee634AaaD3f58B19fDBa3b03E2D9d80);
|
|
|
|
function getSubAccountAddress(address primary, uint256 subAccountId)
|
|
public
|
|
pure
|
|
returns (address)
|
|
{
|
|
require(subAccountId < 256, "sub-account-id-too-big");
|
|
return address(uint160(primary) ^ uint160(subAccountId));
|
|
}
|
|
|
|
struct ImportInputData {
|
|
address[] supplyTokens;
|
|
address[] borrowTokens;
|
|
}
|
|
|
|
struct ImportData {
|
|
address[] _supplyTokens;
|
|
address[] _borrowTokens;
|
|
EulerTokenInterface[] eTokens;
|
|
EulerTokenInterface[] dTokens;
|
|
uint256[] supplyAmts;
|
|
uint256[] borrowAmts;
|
|
}
|
|
|
|
function getSupplyAmounts(
|
|
address userAccount,
|
|
ImportInputData memory inputData,
|
|
ImportData memory data
|
|
) internal view returns (ImportData memory) {
|
|
data.supplyAmts = new uint256[](inputData.supplyTokens.length);
|
|
data._supplyTokens = new address[](inputData.supplyTokens.length);
|
|
data.eTokens = new EulerTokenInterface[](inputData.supplyTokens.length);
|
|
|
|
for (uint256 i = 0; i < inputData.supplyTokens.length; i++) {
|
|
for (uint256 j = i; j < inputData.supplyTokens.length; j++) {
|
|
if (j != i) {
|
|
require(
|
|
inputData.supplyTokens[i] != inputData.supplyTokens[j],
|
|
"token-repeated"
|
|
);
|
|
}
|
|
}
|
|
}
|
|
for (uint256 i = 0; i < inputData.supplyTokens.length; i++) {
|
|
address _token = inputData.supplyTokens[i] == ethAddr
|
|
? wethAddr
|
|
: inputData.supplyTokens[i];
|
|
data._supplyTokens[i] = _token;
|
|
data.eTokens[i] = EulerTokenInterface(markets.underlyingToEToken(_token));
|
|
data.supplyAmts[i] = data.eTokens[i].balanceOf(userAccount);
|
|
}
|
|
|
|
return data;
|
|
}
|
|
|
|
function getBorrowAmounts(
|
|
address userAccount,//user's EOA sub-account address
|
|
ImportInputData memory inputData,
|
|
ImportData memory data
|
|
) internal view returns (ImportData memory) {
|
|
if (inputData.borrowTokens.length > 0) {
|
|
data._borrowTokens = new address[](inputData.borrowTokens.length);
|
|
data.borrowAmts = new uint256[](
|
|
inputData.borrowTokens.length
|
|
);
|
|
for (uint256 i = 0; i < inputData.borrowTokens.length; i++) {
|
|
for (uint256 j = i; j < inputData.borrowTokens.length; j++) {
|
|
if (j != i) {
|
|
require(
|
|
inputData.borrowTokens[i] !=
|
|
inputData.borrowTokens[j],
|
|
"token-repeated"
|
|
);
|
|
}
|
|
}
|
|
}
|
|
for (uint256 i = 0; i < inputData.borrowTokens.length; i++) {
|
|
address _token = inputData.borrowTokens[i] == ethAddr
|
|
? wethAddr
|
|
: inputData.borrowTokens[i];
|
|
|
|
data._borrowTokens[i] = _token;
|
|
data.dTokens[i] = EulerTokenInterface(markets.underlyingToDToken(_token));
|
|
data.borrowAmts[i] = data.dTokens[i].balanceOf(userAccount);
|
|
}
|
|
}
|
|
return data;
|
|
}
|
|
|
|
//transfer and enter market
|
|
function _TransferEtokens(
|
|
uint256 _length,
|
|
EulerTokenInterface[] memory etokenContracts,
|
|
uint256[] memory amts,
|
|
address[] memory tokens,
|
|
bool[] memory enterMarket,
|
|
address userAccountFrom,
|
|
address userAccountTo,
|
|
uint targetId
|
|
) internal {
|
|
for (uint256 i = 0; i < _length; i++) {
|
|
if (amts[i] > 0) {
|
|
uint256 _amt = amts[i];
|
|
require(
|
|
etokenContracts[i].transferFrom(
|
|
userAccountFrom,
|
|
userAccountTo,
|
|
_amt
|
|
),
|
|
"allowance?"//change
|
|
);
|
|
|
|
if (enterMarket[i]) {
|
|
markets.enterMarket(targetId, tokens[i]);
|
|
} else {
|
|
markets.exitMarket(targetId, tokens[i]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
function _TransferDtokens(
|
|
uint256 _length,
|
|
EulerTokenInterface[] memory dtokenContracts,
|
|
uint256[] memory amts,
|
|
address[] memory tokens,
|
|
address eoaIdFrom,
|
|
address dsaIdTo
|
|
) internal {
|
|
for (uint256 i = 0; i < _length; i++) {
|
|
if (amts[i] > 0) {
|
|
uint256 _amt = amts[i];
|
|
require(
|
|
dtokenContracts[i].transferFrom(
|
|
eoaIdFrom,
|
|
dsaIdTo,
|
|
_amt
|
|
),
|
|
"debt-transfer-failed?"
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
} |