반응형 Solidty1 [솔리디티] 간단한 Smart Contract (코인 발행 예제) 코인 발행은 컨트랙트를 만든 사람만이 할 수 있다. 코인을 전송할 땐 아이디와 비밀번호 등이 필요하지 않다. 오직 필요한 것은 Ethereum 키 쌍 뿐이다. Smart Contract 예제 pragma solidity ^0.5.0; contract Coin { // The keyword "public" makes those variables // easily readable from outside. address public minter;// (1) address 변수 타입 mapping (address => uint) public balances; // Events allow light clients to react to // changes efficiently. event Sent(address f.. 2022. 5. 24. 이전 1 다음