Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save percybolmer/d457e44ce337b40da6f3de6a216f2bb5 to your computer and use it in GitHub Desktop.
Save percybolmer/d457e44ce337b40da6f3de6a216f2bb5 to your computer and use it in GitHub Desktop.
/**
* @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