#capturetheether
Read more stories on Hashnode
Articles with this tag
Assume ownership 目标合约 pragma solidity ^0.4.21; contract AssumeOwnershipChallenge { address owner; bool public isComplete; function...
Fuzzy identity 目标合约 pragma solidity ^0.4.21; interface IName { function name() external view returns (bytes32); } contract...
Token sale 目标合约 pragma solidity ^0.4.21; contract TokenSaleChallenge { mapping(address => uint256) public balanceOf; uint256 constant...
在以太坊官网发现了这个 wargame,项目已经比较老了(solidity 版本为 0.4.21)。做完之后发现题目质量是相当高的,比起 Ethernaut 更综合也更有趣~ Warmup 这个部分都是熟悉环境用的,略过 Lotteries Guess the number 目标合约 pragma...