2022-08-31 21:21:50 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.7.6;
|
|
|
|
pragma experimental ABIEncoderV2;
|
|
|
|
|
|
|
|
contract Events {
|
|
|
|
event LogRewardsClaimed(
|
|
|
|
address indexed market,
|
|
|
|
address indexed account,
|
|
|
|
uint256 indexed totalClaimedInWei,
|
2022-09-06 15:23:54 +00:00
|
|
|
uint256 setId
|
2022-08-31 21:21:50 +00:00
|
|
|
);
|
|
|
|
|
2022-09-06 15:23:54 +00:00
|
|
|
event LogRewardsClaimedOnBehalf(
|
2022-08-31 21:21:50 +00:00
|
|
|
address indexed market,
|
2022-09-06 15:23:54 +00:00
|
|
|
address indexed owner,
|
|
|
|
address manager,
|
2022-08-31 21:21:50 +00:00
|
|
|
uint256 indexed totalClaimedInWei,
|
2022-09-06 15:23:54 +00:00
|
|
|
uint256 setId
|
2022-08-31 21:21:50 +00:00
|
|
|
);
|
|
|
|
}
|