dsa-connectors/contracts/polygon/connectors/compound/v3-rewards/events.sol

20 lines
364 B
Solidity
Raw Normal View History

// SPDX-License-Identifier: MIT
2023-04-23 21:08:00 +00:00
pragma solidity ^0.7.0;
contract Events {
event LogRewardsClaimed(
address indexed market,
address indexed account,
uint256 indexed rewardsClaimed,
uint256 setId
);
event LogRewardsClaimedOnBehalf(
address indexed market,
address indexed owner,
address to,
uint256 indexed rewardsClaimed,
uint256 setId
);
}