dsa-connectors/contracts/mainnet/connectors/morpho-rewards/interface.sol

18 lines
359 B
Solidity
Raw Normal View History

2022-10-19 21:04:55 +00:00
//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;
}