이더리움 토큰 발행 2) local 테스트넷 배포하기
1. truffle init을 통한 skeleton 만들기 2. 기초 코드 작성하기 3. 배포 코드 작성하기 4. 컨트랙트 배포하기 1. truffle init openzeppelin 라이브러리를 설치해야 하는데 openzeppelin은 smartcontract 코드를 모아둔 라이브러리이다. $ mkdir smartcontract $ cd smartcontract $ truffle init $ npm init -y $ npm install -E openzeppelin-solidity truffle-config.js 파일을 키고 network와 complier 버전을 수정해야 한다. 2. 기초 코드 작성하기 contracts폴더에 Test.sol 만들기 // SPDX-License-Identifier: G..
2021.07.15