dsa-connectors/contracts/mainnet/connectors/erc20_staking/events.sol

30 lines
537 B
Solidity
Raw Normal View History

2021-06-10 11:56:39 +00:00
pragma solidity ^0.7.0;
contract Events {
event LogDeposit(
address indexed stakingToken,
bytes32 indexed stakingType,
uint256 amount,
uint getId,
uint setId
);
2021-06-10 17:57:27 +00:00
event LogWithdrawAndClaimedReward(
2021-06-10 11:56:39 +00:00
address indexed stakingToken,
bytes32 indexed stakingType,
uint256 amount,
2021-06-10 17:57:27 +00:00
uint256 rewardAmt,
2021-06-10 11:56:39 +00:00
uint getId,
2021-06-10 17:57:27 +00:00
uint setIdAmount,
uint setIdReward
2021-06-10 11:56:39 +00:00
);
event LogClaimedReward(
address indexed rewardToken,
bytes32 indexed stakingType,
uint256 rewardAmt,
uint setId
);
}