dsa-connectors/contracts/mainnet/connectors/erc20_staking/events.sol
2021-06-10 17:26:39 +05:30

28 lines
470 B
Solidity

pragma solidity ^0.7.0;
contract Events {
event LogDeposit(
address indexed stakingToken,
bytes32 indexed stakingType,
uint256 amount,
uint getId,
uint setId
);
event LogWithdraw(
address indexed stakingToken,
bytes32 indexed stakingType,
uint256 amount,
uint getId,
uint setId
);
event LogClaimedReward(
address indexed rewardToken,
bytes32 indexed stakingType,
uint256 rewardAmt,
uint setId
);
}