dsa-connectors/contracts/mainnet/connectors/morpho-rewards/interface.sol
2022-10-20 01:04:55 +04:00

18 lines
359 B
Solidity

//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;
}