Web3

드디어 Web3를 시작하게 됐다.과연 흥미를 붙여 계속 할 수 있을진 모르겠지만.... The Ethernaut을 천천히 풀어보며 공부해보려 한다....일단 우여곡절끝에 지갑 생성 후 Level 1 Fallback을 풀었다. // SPDX-License-Identifier: MITpragma solidity ^0.8.0;contract Fallback { mapping(address => uint256) public contributions; address public owner; constructor() { owner = msg.sender; contributions[msg.sender] = 1000 * (1 ether); } modifier only..
프레딕
'Web3' 카테고리의 글 목록