1. 문제 The Ethernaut The Ethernaut is a Web3/Solidity based wargame played in the Ethereum Virtual Machine. Each level is a smart contract that needs to be 'hacked'. The game is 100% open source and all levels are contributions made by other players. ethernaut.openzeppelin.com You've uncovered an Alien contract. Claim ownership to complete the level. Things that might help Understanding how array..
1. 문제 이 컨트랙트의 작성자는 스토리지의 민감한 부분에 대해 충분히 주의를 기울이고 컨트랙트를 작성했습니다. 이 컨트랙트의 잠금을 해제하시오. 도움이 될 만한 것들: * 스토리지 작동 원리 이해 * 함수의 파라미터가 어떻게 파싱되는지 이해 * 타입 캐스팅이 어떻게 동작하는지 이해 // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract Privacy { bool public locked = true; uint256 public ID = block.timestamp; uint8 private flattening = 10; uint8 private denomination = 255; uint16 private awkwardness = uint16..