Last active
May 9, 2021 19:13
-
-
Save percybolmer/5927c05cd7608cdc58cfdfbeae313276 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @notice | |
* Events below are declared, they are used to communicate to the transaction logs about events | |
*/ | |
// Staked event is triggered whenever a user stakes tokens, address is indexed to make it filterable | |
event Staked(address indexed user, uint256 amount, uint256 index, uint256 timestamp); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment