dsa-connectors/contracts/mainnet/connectors/universeFinance/main.sol
2021-11-15 18:29:08 +08:00

58 lines
2.0 KiB
Solidity

pragma solidity ^0.7.6;
pragma abicoder v2;
import {TokenInterface} from "../../common/interfaces.sol";
import {Helpers} from "./helpers.sol";
import {Events} from "./events.sol";
abstract contract UniverseFinanceResolver is Helpers, Events {
/**
* @notice Deposit in Universe Vault by Adapter
* @param universeVault Universe Official Vault Address
* @param amountA Amount of tokenA
* @param amountB Amount of tokenB
* @param getIds ID to retrieve amountA and amountB
*/
function deposit(
address universeVault,
uint256 amountA,
uint256 amountB,
uint256[] calldata getIds
) external returns (string memory _eventName, bytes memory _eventParam){
amountA = getUint(getIds[0], amountA);
amountB = getUint(getIds[1], amountB);
(uint256 share0, uint256 share1) = _deposit(universeVault, amountA, amountB);
// EVENT
_eventName = "LogDeposit(address,uint256,uint256,uint256,uint256)";
_eventParam = abi.encode(universeVault, amountA, amountB, share0, share1);
}
/**
* @notice Withdraw Token0 & Token1 From Universe Vault
* @param universeVault Universe Official Vault Address
* @param share0 Amount of uToken0.
* @param share1 Amount of uToken1.
* @param setIds stores the amount of output tokens
*/
function withdraw(
address universeVault,
uint256 share0,
uint256 share1,
uint256[] calldata setIds
) external returns (string memory _eventName, bytes memory _eventParam){
(uint256 _amtA, uint256 _amtB) = _withdraw(universeVault, share0, share1);
setUint(setIds[0], _amtA);
setUint(setIds[1], _amtB);
// EVENT
_eventName = "LogWithdraw(address,uint256,uint256,uint256,uint256)";
_eventParam = abi.encode(universeVault, _amtA, _amtB, share0, share1);
}
}
contract ConnectV2UniverseFinance is UniverseFinanceResolver {
string public constant name = "UniverseFinance-v1";
}