2022-10-12 02:29:40 +00:00
|
|
|
//SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.7.0;
|
|
|
|
pragma experimental ABIEncoderV2;
|
|
|
|
import "./interface.sol";
|
|
|
|
import "../../common/stores.sol";
|
|
|
|
import "../../common/basic.sol";
|
|
|
|
import "../../common/interfaces.sol";
|
|
|
|
|
|
|
|
abstract contract Helpers is Stores, Basic {
|
2022-10-15 01:22:14 +00:00
|
|
|
IMorphoCore public constant MORPHO_COMPOUND =
|
2022-10-12 02:29:40 +00:00
|
|
|
IMorphoCore(0x8888882f8f843896699869179fB6E4f7e3B58888);
|
|
|
|
|
2022-10-15 04:09:53 +00:00
|
|
|
IMorphoCompoundLens public constant MORPHO_COMPOUND_LENS =
|
2022-10-12 02:29:40 +00:00
|
|
|
IMorphoCompoundLens(0x930f1b46e1D081Ec1524efD95752bE3eCe51EF67);
|
2022-10-15 04:09:53 +00:00
|
|
|
|
|
|
|
function _performEthToWethConversion(
|
|
|
|
address _tokenAddress,
|
|
|
|
uint256 _amount,
|
|
|
|
uint256 _getId
|
|
|
|
) internal returns (TokenInterface _tokenContract, uint256 _amt) {
|
|
|
|
_amt = getUint(_getId, _amount);
|
|
|
|
|
2022-10-15 17:23:31 +00:00
|
|
|
if (_tokenAddress == ethAddr) {
|
|
|
|
_tokenContract = TokenInterface(wethAddr);
|
|
|
|
if (_amt == uint256(-1)) _amt = address(this).balance;
|
|
|
|
convertEthToWeth(true, _tokenContract, _amt);
|
|
|
|
} else {
|
|
|
|
_tokenContract = TokenInterface(_tokenAddress);
|
|
|
|
if (_amt == uint256(-1)) _amt = _tokenContract.balanceOf(address(this));
|
2022-10-15 04:09:53 +00:00
|
|
|
}
|
|
|
|
}
|
2022-10-12 02:29:40 +00:00
|
|
|
}
|