functioninfo() publicpurereturns (string memory) { return'You will find what you need in info1().'; }
functioninfo1() publicpurereturns (string memory) { return'Try info2(), but with "hello" as a parameter.'; }
functioninfo2(string memory param) publicpurereturns (string memory) { if(keccak256(abi.encodePacked(param)) == keccak256(abi.encodePacked('hello'))) { return'The property infoNum holds the number of the next info method to call.'; } return'Wrong parameter.'; }
functioninfo42() publicpurereturns (string memory) { return'theMethodName is the name of the next method.'; }
functionmethod7123949() publicpurereturns (string memory) { return'If you know the password, submit it to authenticate().'; }
Look carefully atthe contract's code below. You will beat this level if - you claim ownership ofthe contract - you reduce its balance to0 Things that might help - How to send ether when interacting with an ABI - How to send ether outside ofthe ABI - Converting toandfrom wei/ether units (see help() command) - Fallback methods
This is a coin flipping game where you need to build up your winning streak by guessing the outcome of a coin flip. To complete this level you'll need to use your psychic abilities to guess the correct outcome 10timesin a row.
Things that might help
See the Help page above, section "Beyond the console"