mirror of
				https://github.com/Instadapp/dsa-connectors.git
				synced 2024-07-29 22:37:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			172 lines
		
	
	
		
			6.6 KiB
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			172 lines
		
	
	
		
			6.6 KiB
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| pragma solidity ^0.7.0;
 | |
| pragma experimental ABIEncoderV2;
 | |
| 
 | |
| /**
 | |
|  * @title Reward.
 | |
|  * @dev Claim Reward.
 | |
|  */
 | |
| import { TokenInterface } from "../../../common/interfaces.sol";
 | |
| import { Stores } from "../../../common/stores.sol";
 | |
| import { Helpers } from "./helpers.sol";
 | |
| import { Events } from "./events.sol";
 | |
| 
 | |
| abstract contract IncentivesResolver is Events, Helpers {
 | |
| 
 | |
|     /**
 | |
|      * @dev Claim Accrued Qi Token.
 | |
|      * @notice Claim Accrued Qi Token.
 | |
|      * @param setId ID stores the amount of Reward claimed.
 | |
|     */
 | |
|     function ClaimQiReward(uint256 setId) external payable returns (string memory _eventName, bytes memory _eventParam) {
 | |
|         TokenInterface _benqiToken = TokenInterface(address(benqiToken));
 | |
|         uint intialBal = _benqiToken.balanceOf(address(this));
 | |
|         troller.claimReward(rewardQi, address(this));
 | |
|         uint finalBal = _benqiToken.balanceOf(address(this));
 | |
|         uint amt = sub(finalBal, intialBal);
 | |
| 
 | |
|         setUint(setId, amt);
 | |
| 
 | |
|         _eventName = "LogClaimedReward(uint256,uint256)";
 | |
|         _eventParam = abi.encode(amt, setId);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @dev Claim Accrued Qi Token.
 | |
|      * @notice Claim Accrued Qi Token.
 | |
|      * @param tokenIds Array of supplied and borrowed token IDs.
 | |
|      * @param setId ID stores the amount of Reward claimed.
 | |
|     */
 | |
|     function ClaimQiRewardTwo(string[] calldata tokenIds, uint256 setId) external payable returns (string memory _eventName, bytes memory _eventParam) {
 | |
|         uint _len = tokenIds.length;
 | |
|         address[] memory qitokens = new address[](_len);
 | |
|         for (uint i = 0; i < _len; i++) {
 | |
|             (address token, address qiToken) = qiMapping.getMapping(tokenIds[i]);
 | |
|             require(token != address(0) && qiToken != address(0), "invalid token/qitoken address");
 | |
| 
 | |
|             qitokens[i] = qiToken;
 | |
|         }
 | |
| 
 | |
|         TokenInterface _benqiToken = TokenInterface(address(benqiToken));
 | |
|         uint intialBal = _benqiToken.balanceOf(address(this));
 | |
|         troller.claimReward(rewardQi, address(this), qitokens);
 | |
|         uint finalBal = _benqiToken.balanceOf(address(this));
 | |
|         uint amt = sub(finalBal, intialBal);
 | |
| 
 | |
|         setUint(setId, amt);
 | |
| 
 | |
|         _eventName = "LogClaimedReward(uint256,uint256)";
 | |
|         _eventParam = abi.encode(amt, setId);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @dev Claim Accrued Qi Token.
 | |
|      * @notice Claim Accrued Qi Token.
 | |
|      * @param supplyTokenIds Array of supplied tokenIds.
 | |
|      * @param borrowTokenIds Array of borrowed tokenIds.
 | |
|      * @param setId ID stores the amount of Reward claimed.
 | |
|     */
 | |
|     function ClaimQiRewardThree(string[] calldata supplyTokenIds, string[] calldata borrowTokenIds, uint256 setId) external payable returns (string memory _eventName, bytes memory _eventParam) {
 | |
|        (address[] memory qitokens, bool isBorrow, bool isSupply) = getMergedQiTokens(supplyTokenIds, borrowTokenIds);
 | |
| 
 | |
|         address[] memory holders = new address[](1);
 | |
|         holders[0] = address(this);
 | |
| 
 | |
|         TokenInterface _benqiToken = TokenInterface(address(benqiToken));
 | |
|         uint intialBal = _benqiToken.balanceOf(address(this));
 | |
|         troller.claimReward(rewardQi, holders, qitokens, isBorrow, isSupply);
 | |
|         uint finalBal = _benqiToken.balanceOf(address(this));
 | |
|         uint amt = sub(finalBal, intialBal);
 | |
| 
 | |
|         setUint(setId, amt);
 | |
| 
 | |
|         _eventName = "LogClaimedReward(uint256,uint256)";
 | |
|         _eventParam = abi.encode(amt, setId);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @dev Claim Accrued Avax Token.
 | |
|      * @notice Claim Accrued Avax Token.
 | |
|      * @param setId ID stores the amount of Reward claimed.
 | |
|     */
 | |
|     function ClaimAvaxReward(uint256 setId) external payable returns (string memory _eventName, bytes memory _eventParam) {
 | |
|         uint intialBal = address(this).balance;
 | |
|         troller.claimReward(rewardAvax, address(this));
 | |
|         uint finalBal = address(this).balance;
 | |
|         uint amt = sub(finalBal, intialBal);
 | |
| 
 | |
|         setUint(setId, amt);
 | |
| 
 | |
|         _eventName = "LogClaimedReward(uint256,uint256)";
 | |
|         _eventParam = abi.encode(amt, setId);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @dev Claim Accrued Avax Token.
 | |
|      * @notice Claim Accrued Avax Token.
 | |
|      * @param tokenIds Array of supplied and borrowed token IDs.
 | |
|      * @param setId ID stores the amount of Reward claimed.
 | |
|     */
 | |
|     function ClaimAvaxRewardTwo(string[] calldata tokenIds, uint256 setId) external payable returns (string memory _eventName, bytes memory _eventParam) {
 | |
|         uint _len = tokenIds.length;
 | |
|         address[] memory qitokens = new address[](_len);
 | |
|         for (uint i = 0; i < _len; i++) {
 | |
|             (address token, address qiToken) = qiMapping.getMapping(tokenIds[i]);
 | |
|             require(token != address(0) && qiToken != address(0), "invalid token/qitoken address");
 | |
| 
 | |
|             qitokens[i] = qiToken;
 | |
|         }
 | |
| 
 | |
|         uint intialBal = address(this).balance;
 | |
|         troller.claimReward(rewardAvax, address(this), qitokens);
 | |
|         uint finalBal = address(this).balance;
 | |
|         uint amt = sub(finalBal, intialBal);
 | |
| 
 | |
|         setUint(setId, amt);
 | |
| 
 | |
|         _eventName = "LogClaimedReward(uint256,uint256)";
 | |
|         _eventParam = abi.encode(amt, setId);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @dev Claim Accrued Avax Token.
 | |
|      * @notice Claim Accrued Avax Token.
 | |
|      * @param supplyTokenIds Array of supplied tokenIds.
 | |
|      * @param borrowTokenIds Array of borrowed tokenIds.
 | |
|      * @param setId ID stores the amount of Reward claimed.
 | |
|     */
 | |
|     function ClaimAvaxRewardThree(string[] calldata supplyTokenIds, string[] calldata borrowTokenIds, uint256 setId) external payable returns (string memory _eventName, bytes memory _eventParam) {
 | |
|        (address[] memory qitokens, bool isBorrow, bool isSupply) = getMergedQiTokens(supplyTokenIds, borrowTokenIds);
 | |
| 
 | |
|         address[] memory holders = new address[](1);
 | |
|         holders[0] = address(this);
 | |
| 
 | |
|         uint intialBal = address(this).balance;
 | |
|         troller.claimReward(rewardAvax, holders, qitokens, isBorrow, isSupply);
 | |
|         uint finalBal = address(this).balance;
 | |
|         uint amt = sub(finalBal, intialBal);
 | |
| 
 | |
|         setUint(setId, amt);
 | |
| 
 | |
|         _eventName = "LogClaimedReward(uint256,uint256)";
 | |
|         _eventParam = abi.encode(amt, setId);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @dev Delegate votes.
 | |
|      * @notice Delegate votes.
 | |
|      * @param delegatee The address to delegate the votes to.
 | |
|     */
 | |
|     function delegate(address delegatee) external payable returns (string memory _eventName, bytes memory _eventParam) {
 | |
|         require(benqiToken.delegates(address(this)) != delegatee, "Already delegated to same delegatee.");
 | |
| 
 | |
|         benqiToken.delegate(delegatee);
 | |
| 
 | |
|         _eventName = "LogDelegate(address)";
 | |
|         _eventParam = abi.encode(delegatee);
 | |
|     }
 | |
| }
 | |
| 
 | |
| contract ConnectV2BenqiIncentivesAvalanche is IncentivesResolver {
 | |
|     string public constant name = "Benqi-Incentives-v1";
 | |
| }
 | 
