lanford33
Lanford33

Lanford33

Follow
Follow
homebadgesnewsletter
Tag

capturetheether

#capturetheether

More content

Read more stories on Hashnode


Articles with this tag

Capture The Ether 题解(Miscellaneous)

Dec 3, 20203 min read

Assume ownership 目标合约 pragma solidity ^0.4.21; contract AssumeOwnershipChallenge { address owner; bool public isComplete; function...

Capture The Ether 题解(Miscellaneous)

Capture The Ether 题解(Accounts)

Dec 3, 20205 min read

Fuzzy identity 目标合约 pragma solidity ^0.4.21; interface IName { function name() external view returns (bytes32); } contract...

Capture The Ether 题解(Accounts)

Capture The Ether 题解(Math)

Dec 1, 20207 min read

Token sale 目标合约 pragma solidity ^0.4.21; contract TokenSaleChallenge { mapping(address => uint256) public balanceOf; uint256 constant...

Capture The Ether 题解(Math)

Capture The Ether 题解(Lotteries)

Dec 1, 20203 min read

在以太坊官网发现了这个 wargame,项目已经比较老了(solidity 版本为 0.4.21)。做完之后发现题目质量是相当高的,比起 Ethernaut 更综合也更有趣~ Warmup 这个部分都是熟悉环境用的,略过 Lotteries Guess the number 目标合约 pragma...

Capture The Ether 题解(Lotteries)