mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
Rewards contract set up
This commit is contained in:
parent
5ce5e44c6a
commit
23c966d2df
21
contracts/mainnet/connectors/morpho-rewards/events.sol
Normal file
21
contracts/mainnet/connectors/morpho-rewards/events.sol
Normal file
|
@ -0,0 +1,21 @@
|
|||
//SPDX-License-Identifier: MIT
|
||||
pragma solidity ^0.7.0;
|
||||
pragma experimental ABIEncoderV2;
|
||||
|
||||
contract Events {
|
||||
event LogClaimedMorpho(uint256 claimable, bytes32[] proofs);
|
||||
|
||||
event LogClaimedAave(
|
||||
address[] poolTokenAddresses,
|
||||
bool tradeForMorphoToken,
|
||||
uint256 amountOfRewards,
|
||||
uint256 setId
|
||||
);
|
||||
|
||||
event LogClaimedCompound(
|
||||
address[] poolTokenAddresses,
|
||||
bool tradeForMorphoToken,
|
||||
uint256 amountOfRewards,
|
||||
uint256 setId
|
||||
);
|
||||
}
|
16
contracts/mainnet/connectors/morpho-rewards/helpers.sol
Normal file
16
contracts/mainnet/connectors/morpho-rewards/helpers.sol
Normal file
|
@ -0,0 +1,16 @@
|
|||
//SPDX-License-Identifier: MIT
|
||||
pragma solidity ^0.7.0;
|
||||
pragma experimental ABIEncoderV2;
|
||||
import "./interface.sol";
|
||||
import { Basic } from "../../common/basic.sol";
|
||||
|
||||
abstract contract Helpers is Basic {
|
||||
IMorphoCore public constant MORPHO_COMPOUND =
|
||||
IMorphoCore(0x8888882f8f843896699869179fB6E4f7e3B58888);
|
||||
|
||||
IMorphoCore public constant MORPHO_AAVE =
|
||||
IMorphoCore(0x777777c9898D384F785Ee44Acfe945efDFf5f3E0);
|
||||
|
||||
IMorphoRewardsDistributor public constant MORPHO_REWARDS =
|
||||
IMorphoRewardsDistributor(0x3B14E5C73e0A56D607A8688098326fD4b4292135);
|
||||
}
|
17
contracts/mainnet/connectors/morpho-rewards/interface.sol
Normal file
17
contracts/mainnet/connectors/morpho-rewards/interface.sol
Normal file
|
@ -0,0 +1,17 @@
|
|||
//SPDX-License-Identifier: MIT
|
||||
pragma solidity ^0.7.0;
|
||||
|
||||
interface IMorphoCore {
|
||||
function claimRewards(
|
||||
address[] calldata _tokenAddresses,
|
||||
bool _tradeForMorphoToken
|
||||
) external returns (uint256 _claimedAmount);
|
||||
}
|
||||
|
||||
interface IMorphoRewardsDistributor {
|
||||
function claim(
|
||||
address _account,
|
||||
uint256 _claimable,
|
||||
bytes32[] calldata _proof
|
||||
) external;
|
||||
}
|
99
contracts/mainnet/connectors/morpho-rewards/main.sol
Normal file
99
contracts/mainnet/connectors/morpho-rewards/main.sol
Normal file
|
@ -0,0 +1,99 @@
|
|||
//SPDX-License-Identifier: MIT
|
||||
pragma solidity ^0.7.0;
|
||||
pragma experimental ABIEncoderV2;
|
||||
import "./helpers.sol";
|
||||
import "./events.sol";
|
||||
|
||||
/**
|
||||
* @title Morpho Rewards.
|
||||
* @dev Claim Morpho and Underlying Pool Rewards.
|
||||
*/
|
||||
|
||||
abstract contract MorphoRewards is Helpers, Events {
|
||||
/**
|
||||
* @dev Claim Pending MORPHO Rewards.
|
||||
* @notice Claims rewards.
|
||||
* @param _claimable The overall claimable amount of token rewards.
|
||||
* @param _proofs The merkle proof that validates this claim.
|
||||
*/
|
||||
function claimMorpho(uint256 _claimable, bytes32[] calldata _proofs)
|
||||
external
|
||||
payable
|
||||
returns (string memory _eventName, bytes memory _eventParam)
|
||||
{
|
||||
require(_proofs.length > 0, "proofs-empty");
|
||||
|
||||
MORPHO_REWARDS.claim(address(this), _claimable, _proofs);
|
||||
|
||||
_eventName = "LogClaimedMorpho(uint256,bytes32[])";
|
||||
_eventParam = abi.encode(_claimable, _proofs);
|
||||
}
|
||||
|
||||
/**
|
||||
* @dev Claim Underlying Pool Rewards.
|
||||
* @notice Claims rewards for the given assets.
|
||||
* @param _poolTokenAddresses The cToken addresses to claim rewards from.
|
||||
* @param _tradeForMorphoToken Whether or not to trade reward tokens for MORPHO tokens.
|
||||
* @param _setId Set ID for claimed amount(in COMP).
|
||||
*/
|
||||
function claimCompound(
|
||||
address[] calldata _poolTokenAddresses,
|
||||
bool _tradeForMorphoToken,
|
||||
uint256 _setId
|
||||
)
|
||||
external
|
||||
payable
|
||||
returns (string memory _eventName, bytes memory _eventParam)
|
||||
{
|
||||
uint256 _amountOfRewards = MORPHO_COMPOUND.claimRewards(
|
||||
_poolTokenAddresses,
|
||||
_tradeForMorphoToken
|
||||
);
|
||||
|
||||
setUint(_setId, _amountOfRewards);
|
||||
|
||||
_eventName = "LogClaimedCompound(address[],bool,uint256,uint256)";
|
||||
_eventParam = abi.encode(
|
||||
_poolTokenAddresses,
|
||||
_tradeForMorphoToken,
|
||||
_amountOfRewards,
|
||||
_setId
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @dev Claim Underlying Pool Rewards.
|
||||
* @notice Claims rewards for the given assets.
|
||||
* @param _poolTokenAddresses The assets to claim rewards from (aToken or variable debt token).
|
||||
* @param _tradeForMorphoToken Whether or not to trade reward tokens for MORPHO tokens.
|
||||
* @param _setId Set ID for claimed amount(in reward token).
|
||||
*/
|
||||
function claimAave(
|
||||
address[] calldata _poolTokenAddresses,
|
||||
bool _tradeForMorphoToken,
|
||||
uint256 _setId
|
||||
)
|
||||
external
|
||||
payable
|
||||
returns (string memory _eventName, bytes memory _eventParam)
|
||||
{
|
||||
uint256 _amountOfRewards = MORPHO_AAVE.claimRewards(
|
||||
_poolTokenAddresses,
|
||||
_tradeForMorphoToken
|
||||
);
|
||||
|
||||
setUint(_setId, _amountOfRewards);
|
||||
|
||||
_eventName = "LogClaimedAave(address[],bool,uint256,uint256)";
|
||||
_eventParam = abi.encode(
|
||||
_poolTokenAddresses,
|
||||
_tradeForMorphoToken,
|
||||
_amountOfRewards,
|
||||
_setId
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
contract ConnectV2MorphoCompound is MorphoRewards {
|
||||
string public constant name = "Morpho-Rewards-v1.0";
|
||||
}
|
Loading…
Reference in New Issue
Block a user