This file contains 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
// | |
// GuessToWin.solpp | |
// | |
// Simple contract allowing anyone to guess secret passwords. If they guess any right, they | |
// will be awarded an amount of Vite based on the amount funded to the contract. | |
// | |
// Contract initially has no rewards balances stored. Any user can create rewards for a guess | |
// by calling the Fund function and providing the appropriate hash of the secret guess they | |
// would like to award, along with a patment of the amount of Vite they want to fund the award with. | |
// |