Created
July 30, 2021 05:26
-
-
Save percybolmer/d457e44ce337b40da6f3de6a216f2bb5 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 | |
* StakingSummary is a struct that is used to contain all stakes performed by a certain account | |
*/ | |
struct StakingSummary{ | |
uint256 total_amount; | |
Stake[] stakes; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment